mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-10-31 21:00:51 +01:00
42 lines
1.8 KiB
XML
42 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<VSTestLogger>nunit</VSTestLogger>
|
|
<VSTestResultsDirectory>TestResults.FNA</VSTestResultsDirectory>
|
|
<RootNamespace>Tests</RootNamespace>
|
|
<DefineConstants>$(DefineConstants);FNA</DefineConstants>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MLEM.Extended\MLEM.Extended.FNA.csproj" />
|
|
<ProjectReference Include="..\MLEM.Startup\MLEM.Startup.FNA.csproj" />
|
|
<ProjectReference Include="..\MLEM.Data\MLEM.Data.FNA.csproj" />
|
|
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.FNA.csproj" />
|
|
<ProjectReference Include="..\MLEM\MLEM.FNA.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FNA\FNA.Core.csproj" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.2.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" />
|
|
<PackageReference Include="NunitXml.TestLogger" Version="3.0.127" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Content/**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="../FnaNative/**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Link>%(Filename)%(Extension)</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|