26 lines
667 B
XML
26 lines
667 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
|
|
<PackageReference Include="Spectre.Console" Version="0.54.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Inputs\*" />
|
|
<EmbeddedResource Include="Inputs\*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Inputs\Day8.txt" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|