Files
video-v1/vav2/godot_extension/VavCoreTest.csproj

23 lines
714 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<!-- VavCore.Wrapper Reference -->
<ItemGroup>
<Reference Include="VavCore.Wrapper">
<HintPath>src\VavCore.Wrapper\bin\Debug\net6.0\VavCore.Wrapper.dll</HintPath>
</Reference>
</ItemGroup>
<!-- Copy VavCore-debug.dll to output directory -->
<ItemGroup>
<None Include="libs\windows-x86_64\*" CopyToOutputDirectory="PreserveNewest" Condition="$([MSBuild]::IsOSPlatform('Windows'))" />
</ItemGroup>
</Project>