2022-02-18 17:45:28 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-08-09 13:53:22 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-02-18 17:45:28 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\MultiversalDiplomacy\MultiversalDiplomacy.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.2" />
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-08-18 04:24:59 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="Scripts/**/*.txt">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-02-18 17:45:28 +00:00
|
|
|
</Project>
|