Proto2CS.csproj 1004 B

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  4. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <OutputType>Exe</OutputType>
  8. <TargetFramework>netcoreapp3.1</TargetFramework>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  11. <OutputPath>../../ToolsApp/Proto2CS/</OutputPath>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  14. <OutputPath>../../ToolsApp/Proto2CS/</OutputPath>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <Compile Remove=".vs\**" />
  18. <Compile Include="..\..\Unity\Assets\Model\Core\ProcessHelper.cs">
  19. <Link>ProcessHelper.cs</Link>
  20. </Compile>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <EmbeddedResource Remove=".vs\**" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <None Remove=".vs\**" />
  27. </ItemGroup>
  28. </Project>