adventofcode/2020/AdventOfCode.csproj

15 lines
468 B
XML
Raw Normal View History

2020-11-30 16:16:50 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
2020-11-30 16:26:04 +00:00
<GenerateProgramFile>false</GenerateProgramFile>
2020-11-30 16:16:50 +00:00
</PropertyGroup>
2020-11-30 16:26:04 +00:00
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
2020-11-30 16:16:50 +00:00
</Project>