Proto2CS.csproj 912 B

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