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

16 lines
492 B
XML
Raw Permalink 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>
2024-05-10 17:27:12 +00:00
<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>
2024-05-10 17:27:12 +00:00
<PackageReference Include="CommandLineParser" Version="2.9.1"/>
2023-11-25 18:21:39 +00:00
</ItemGroup>
</Project>