csbindgen/dotnet-sandbox/CsbindgenDotnetConsoleApp.csproj
2023-02-27 03:31:44 +09:00

21 lines
550 B
XML
Vendored

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<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>