AdventOfCode/AdventOfCode.Solutions/AdventOfCode.Solutions.csproj
Rob 3846b42b7e Massive code base change
partial completion of day 3
2023-12-03 19:09:26 +01:00

21 lines
527 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>AdventOfCode.Solutions</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\AdventOfCode.Core\AdventOfCode.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="2023\Day 03\Day03.cs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Compile>
</ItemGroup>
</Project>