22 lines
845 B
XML
22 lines
845 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoFixture" Version="4.17.0" />
|
|
<PackageReference Include="FluentAssertions" Version="6.2.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0-preview-20211130-02" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
|
|
<PackageReference Include="xunit" Version="2.4.2-pre.12" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Gameboard.ShogiUI.Sockets.ServiceModels\Gameboard.ShogiUI.Sockets.ServiceModels.csproj" />
|
|
<ProjectReference Include="..\Gameboard.ShogiUI.Sockets\Gameboard.ShogiUI.Sockets.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|