ben
/
aoc
1
0
Fork 0
aoc/AOC.Common/AOC.Common.csproj

16 lines
494 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-09-18 18:47:17 +00:00
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2022-10-27 16:07:54 +00:00
<ItemGroup>
<Using Include="System.Diagnostics" />
<Using Include="System.Numerics" />
<Using Include="System.Reflection" />
2022-10-27 16:07:54 +00:00
</ItemGroup>
2023-11-25 18:21:39 +00:00
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
</ItemGroup>
</Project>