aoc2021/aoc2021/aoc2021.csproj

30 lines
783 B
XML
Raw Normal View History

2021-11-11 05:19:35 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
2021-12-01 15:10:43 +00:00
<None Update="input\*.in">
2021-11-11 05:19:35 +00:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
2021-12-02 05:11:44 +00:00
<Using Include="System.Collections.Generic" />
2021-12-20 06:52:10 +00:00
<Using Include="System.Collections.Immutable" />
2021-12-02 05:11:44 +00:00
<Using Include="System.Diagnostics" />
<Using Include="System.Reflection" />
<Using Include="System.Text" />
<Using Include="System.Text.RegularExpressions" />
2021-11-11 05:19:35 +00:00
</ItemGroup>
2021-12-09 06:20:41 +00:00
<ItemGroup>
<PackageReference Include="morelinq" Version="3.3.2" />
</ItemGroup>
2021-11-11 05:19:35 +00:00
</Project>