40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net10.0</TargetFramework>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<IsPackable>false</IsPackable>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
|||
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
|||
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|||
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Using Include="Xunit" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\VoiceCat.Interop\VoiceCat.Interop.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<!-- voicecat.dll must exist (build the `windows-client` CMake preset first — see
|
|||
|
|
clients/windows/README.md) before these tests can run; the P/Invoke smoke tests need
|
|||
|
|
a real native library to call into. -->
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Content Include="$(VoiceCatNativeDir)\voicecat.dll" Condition="Exists('$(VoiceCatNativeDir)\voicecat.dll')">
|
|||
|
|
<Link>voicecat.dll</Link>
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<Target Name="VoiceCatCheckNativeDll" BeforeTargets="Build">
|
|||
|
|
<Error Condition="!Exists('$(VoiceCatNativeDir)\voicecat.dll')"
|
|||
|
|
Text="voicecat.dll not found at '$(VoiceCatNativeDir)'. Build it first: cmake --preset windows-client && cmake --build --preset windows-client (see clients/windows/README.md)." />
|
|||
|
|
</Target>
|
|||
|
|
|
|||
|
|
</Project>
|