29 lines
871 B
XML
29 lines
871 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AdventOfCode2024.Input\AdventOfCode2024.Input.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\..\input\day1.txt">
|
|
<Link>input\day1.txt</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="..\..\input\day1sample.txt">
|
|
<Link>input\day1sample.txt</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="..\..\input\_placeholder">
|
|
<Link>input\_placeholder</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|