1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-11 11:48:46 +02:00
MLEM/Tests/Tests.csproj

35 lines
1.5 KiB
XML
Raw Normal View History

2021-03-18 17:28:08 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-09-09 17:55:23 +02:00
<TargetFramework>net6.0</TargetFramework>
2021-03-18 17:28:08 +01:00
<VSTestLogger>nunit</VSTestLogger>
<VSTestResultsDirectory>TestResults</VSTestResultsDirectory>
2022-09-15 10:44:50 +02:00
<IsPackable>false</IsPackable>
2021-03-18 17:28:08 +01:00
</PropertyGroup>
2022-09-09 17:55:23 +02:00
2021-03-18 17:28:08 +01:00
<ItemGroup>
2021-04-02 17:12:27 +02:00
<ProjectReference Include="..\MLEM.Startup\MLEM.Startup.csproj" />
<ProjectReference Include="..\MLEM.Data\MLEM.Data.csproj" />
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.csproj" />
<ProjectReference Include="..\MLEM\MLEM.csproj" />
2021-03-18 17:28:08 +01:00
</ItemGroup>
2022-09-09 17:55:23 +02:00
2021-03-18 17:28:08 +01:00
<ItemGroup>
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641" />
2022-06-24 14:01:26 +02:00
<PackageReference Include="coverlet.collector" Version="3.1.2">
2021-12-28 14:56:11 +01:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2021-07-20 00:55:36 +02:00
</PackageReference>
2022-09-03 12:31:34 +02:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
2022-06-24 14:01:26 +02:00
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
2021-11-29 11:50:43 +01:00
<PackageReference Include="NunitXml.TestLogger" Version="3.0.117" />
2021-03-18 17:28:08 +01:00
</ItemGroup>
2022-09-09 17:55:23 +02:00
2021-03-18 17:28:08 +01:00
<ItemGroup>
2021-12-28 14:56:11 +01:00
<Content Include="Content/**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2021-03-18 17:28:08 +01:00
</ItemGroup>
</Project>