From a056f417cd6b024b6dabe74b41592123ea2fdc3a Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Tue, 10 Dec 2024 23:59:26 +0100 Subject: [PATCH] Update to .NET 9 --- .gitignore | 4 +++- AdventOfCode2018.fsproj | 7 +++++-- AdventOfCode2018.sln | 22 ++++++++++++++++++++++ 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 AdventOfCode2018.sln diff --git a/.gitignore b/.gitignore index bd700f9..47e4c1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ bin -obj \ No newline at end of file +obj +.vs +Data/day* \ No newline at end of file diff --git a/AdventOfCode2018.fsproj b/AdventOfCode2018.fsproj index e78a65c..ad90b45 100644 --- a/AdventOfCode2018.fsproj +++ b/AdventOfCode2018.fsproj @@ -1,7 +1,7 @@ - + Exe - netcoreapp2.1 + net9.0 @@ -34,4 +34,7 @@ PreserveNewest + + + \ No newline at end of file diff --git a/AdventOfCode2018.sln b/AdventOfCode2018.sln new file mode 100644 index 0000000..164d7a6 --- /dev/null +++ b/AdventOfCode2018.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35527.113 d17.12 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "AdventOfCode2018", "AdventOfCode2018.fsproj", "{980206D8-0AA0-4A51-8674-D19E558DE9CF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {980206D8-0AA0-4A51-8674-D19E558DE9CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {980206D8-0AA0-4A51-8674-D19E558DE9CF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {980206D8-0AA0-4A51-8674-D19E558DE9CF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {980206D8-0AA0-4A51-8674-D19E558DE9CF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal -- 2.45.2