mirror of
https://github.com/Smaug123/AdventOfCode2022
synced 2025-10-21 17:18:43 +00:00
24 lines
713 B
XML
24 lines
713 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="EfficientString.fs" />
|
|
<Compile Include="Day1.fs" />
|
|
<Compile Include="Day2.fs" />
|
|
<Compile Include="Day3.fs" />
|
|
<Compile Include="Day3Efficient.fs" />
|
|
<Compile Include="Day4.fs" />
|
|
<Compile Include="Day5.fs" />
|
|
<Compile Include="Day6.fs" />
|
|
<Compile Include="Day7.fs" />
|
|
<Compile Include="Day8.fs" />
|
|
<Compile Include="Day9.fs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|