ENetCSharp.csproj 914 B

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup Condition="'$(Configuration)'=='Debug'">
  6. <Optimize>false</Optimize>
  7. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)'=='Release'">
  10. <Optimize>true</Optimize>
  11. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <Compile Include="$(SlnDir)Source\Managed\*.cs" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="$(CsDir)CMake\CMake.csproj">
  18. <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  19. <SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties>
  20. </ProjectReference>
  21. </ItemGroup>
  22. <Import Project="$(CsDir)CMake\CMake.Copy.targets" />
  23. </Project>