mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
27 lines
603 B
XML
27 lines
603 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.ML.OnnxRuntime.DirectML" />
|
|
<PackageReference Include="MSTest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Data/*.*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AudioCore\AudioCore.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|