mirror of
https://github.com/Smaug123/AdventOfCode2021
synced 2025-10-07 08:48:41 +00:00
19 lines
423 B
XML
19 lines
423 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Utils.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Inputs/Day1.txt" />
|
|
<Compile Include="Day1.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|