Files
Project-AOC-2024/Day12/Day12.csproj
Dimitrios Kaltzidis d98019ff8b Add Day 12 Part 1
2024-12-12 08:27:53 +02:00

17 lines
404 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="input.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>