-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaoc24.fsproj
More file actions
41 lines (41 loc) · 1.39 KB
/
aoc24.fsproj
File metadata and controls
41 lines (41 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="AStar.fs" />
<Compile Include="Prelude.fs" />
<Compile Include="Template.fs" />
<Compile Include="Day01.fs" />
<Compile Include="Day02.fs" />
<Compile Include="Day03.fs" />
<Compile Include="Day04.fs" />
<Compile Include="Day05.fs" />
<Compile Include="Day06.fs" />
<Compile Include="Day07.fs" />
<Compile Include="Day08.fs" />
<Compile Include="Day09.fs" />
<Compile Include="Day10.fs" />
<Compile Include="Day11.fs" />
<Compile Include="Day13.fs" />
<Compile Include="Day14.fs" />
<Compile Include="Day15.fs" />
<Compile Include="Day16.fs" />
<Compile Include="Day17.fs" />
<Compile Include="Day18.fs" />
<Compile Include="Day19.fs" />
<Compile Include="Day20.fs" />
<Compile Include="Day21.fs" />
<Compile Include="Day22.fs" />
<Compile Include="Day23.fs" />
<Compile Include="Day24.fs" />
<Compile Include="Day25.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Collections.ParallelSeq" Version="1.2.0" />
<PackageReference Include="FSharpPlus" Version="1.6.1" />
<PackageReference Include="FSharpx.Collections" Version="3.1.0" />
</ItemGroup>
</Project>