Files
Project-AOC-2024/Day6/Day6.csproj
Dimitrios Kaltzidis daffd58ed0 Add Day 6 part 1
2024-12-06 17:21:01 +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>