Files
AdventOfCode2021/AdventOfCode2021.fsproj
2021-12-06 19:37:55 +00:00

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>