GildedRose-Refactoring-Kata/csharpcore/csharpcore.csproj
Will Verland 80fca5097e Upgrade csharpcore from .NET Core 2.1 to 3.1
.NET Core 2.1 loses support on the 21st August 2021. The current Long
Term Support version of .NET Core is 3.1. See https://docs.microsoft.com/en-us/lifecycle/products/microsoft-net-and-net-core for details.
2021-07-21 16:37:12 +12:00

16 lines
530 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<StartupObject>csharpcore.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ApprovalTests" Version="4.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
</Project>