-
Notifications
You must be signed in to change notification settings - Fork 0
/
advent-of-code-2024.fsproj
48 lines (42 loc) · 2.23 KB
/
advent-of-code-2024.fsproj
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
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>aoc24</RootNamespace>
<OtherFlags>$(OtherFlags) --test:GraphBasedChecking --test:ParallelOptimization --test:ParallelIlxGen --test:DumpCheckingGraph </OtherFlags>
</PropertyGroup>
<PropertyGroup Condition="'$(test)' != 'true'">
<!-- turning off a lot of things, so test frameworks don't hijack our entry point -->
<GenerateProgramFile>false</GenerateProgramFile>
<XunitAutoGeneratedEntryPoint>false</XunitAutoGeneratedEntryPoint>
<XunitRegisterBuiltInRunnerReporters>false</XunitRegisterBuiltInRunnerReporters>
<GenerateTestingPlatformEntryPoint>false</GenerateTestingPlatformEntryPoint>
<GenerateSelfRegisteredExtensions>false</GenerateSelfRegisteredExtensions>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FParsec" Version="1.1.1" />
<PackageReference Include="FSharp.HashCollections" Version="0.3.4" />
<PackageReference Include="FSharp.Stats" Version="0.5.0" />
<PackageReference Include="MathNet.Numerics.FSharp" Version="5.0.0" />
<PackageReference Include="Plotly.NET" Version="5.1.0" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="FSharp.Text.RegexProvider" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit.v3" Version="0.6.0-pre.7" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0" />
<PackageReference Include="Unquote" Version="7.0.0" />
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<Content Include="Properties\launchSettings.json" />
<None Include=".gitignore" />
<None Include=".env*" />
<None Include="README.md" />
<None Include="inputs/*" />
<Compile Include="Prelude.fs" />
<Compile Include="Day*.fs" />
<Compile Include="Program.fs" Condition="'$(test)' != 'true'" />
</ItemGroup>
</Project>