aoc2023/AdventOfCode/AdventOfCode.csproj

24 lines
501 B
XML
Raw Permalink Normal View History

2023-12-05 00:16:22 -06:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-12-05 14:14:41 -06:00
<TargetFramework>net7.0</TargetFramework>
2023-12-05 00:16:22 -06:00
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AoCHelper" Version="3.0.0" />
</ItemGroup>
<PropertyGroup>
<NoWarn>S101</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Update="Inputs\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>