mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-28 00:37:19 -05:00
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Description>Ensuring functionality works as intended</Description>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentAssertions" Version="6.12.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
|
<PackageReference Include="System.Memory" Version="4.5.5" />
|
|
<PackageReference Include="xunit" Version="2.6.2" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\pkNX.Containers\pkNX.Containers.csproj" />
|
|
<ProjectReference Include="..\..\pkNX.Randomization\pkNX.Randomization.csproj" />
|
|
<ProjectReference Include="..\..\pkNX.Structures\pkNX.Structures.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|