csbindgen/dotnet-sandbox/CsbindgenDotnetConsoleApp.csproj
2023-04-16 02:07:21 +09:00

29 lines
955 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>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="../target/debug/csbindgen_tests.dll" Condition="Exists('../target/debug/csbindgen_tests.dll')">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="../target/debug/csbindgen_tests.pdb" Condition="Exists('../target/debug/csbindgen_tests.pdb')">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GroupedNativeMethodsGenerator\GroupedNativeMethodsGenerator.csproj">
<OutputItemType>Analyzer</OutputItemType>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>