csbindgen/dotnet-sandbox/CsbindgenDotnetConsoleApp.csproj

28 lines
922 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>
<ItemGroup>
2023-04-15 16:42:13 +01:00
<None Include="../target/debug/csbindgen_tests.dll" Condition="Exists('../target/debug/csbindgen_tests.dll')">
2023-02-26 18:31:44 +00:00
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2023-04-15 16:42:13 +01:00
<None Include="../target/debug/csbindgen_tests.pdb" Condition="Exists('../target/debug/csbindgen_tests.pdb')">
2023-02-26 18:31:44 +00:00
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2023-04-14 17:54:15 +01:00
<ItemGroup>
<ProjectReference Include="..\GroupedNativeMethodsGenerator\GroupedNativeMethodsGenerator.csproj">
<OutputItemType>Analyzer</OutputItemType>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
2023-02-26 18:31:44 +00:00
</Project>