1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(DotnetVersion)</TargetFramework>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Items.Tests.fs"/>
<Compile Include="World.Tests.fs"/>
<Compile Include="SavegameMigrations.Tests.fs"/>
<Compile Include="Program.fs"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FsUnit" Version="5.4.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2"/>
<PackageReference Include="NUnit" Version="3.13.3"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1"/>
<PackageReference Include="NUnit.Analyzers" Version="3.3.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Duets.Data\Duets.Data.fsproj"/>
<ProjectReference Include="..\..\src\Duets.Simulation\Duets.Simulation.fsproj"/>
<ProjectReference Include="..\Test.Common\Test.Common.fsproj"/>
</ItemGroup>
</Project>