csbindgen/dotnet-sandbox/CsbindgenDotnetConsoleApp.csproj

28 lines
749 B
XML
Raw Normal View History

2023-02-26 18:31:44 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
2023-03-06 09:06:52 +00:00
<ItemGroup>
<!--<Compile Remove="bullet3_bindgen.cs" />
<Compile Remove="lz4_bindgen.cs" />
<Compile Remove="quiche_bindgen.cs" />
<Compile Remove="zstd_bindgen.cs" />-->
</ItemGroup>
2023-02-26 18:31:44 +00:00
<ItemGroup>
<None Include="../target/debug/csbindgen_tests.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="../target/debug/csbindgen_tests.pdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>