From 4139d6af7323bc34045faf0c813f9668637fec0e Mon Sep 17 00:00:00 2001 From: Romfos Date: Sun, 5 May 2024 06:16:56 +0300 Subject: [PATCH] Update build project to .net 8 (#776) * Update build project to .net 8 * Update MSBuild.StructuredLogger * Update nuget packages --- build/build.fsproj | 8 +++----- build/build.sln | 25 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 build/build.sln diff --git a/build/build.fsproj b/build/build.fsproj index 99bf7b8c..52230f9e 100644 --- a/build/build.fsproj +++ b/build/build.fsproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 Exe buildOutput @@ -14,10 +14,8 @@ - - - - + + diff --git a/build/build.sln b/build/build.sln new file mode 100644 index 00000000..959424d8 --- /dev/null +++ b/build/build.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34525.116 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "build", "build.fsproj", "{80930547-418C-49D9-9966-2A578389957C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {80930547-418C-49D9-9966-2A578389957C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {80930547-418C-49D9-9966-2A578389957C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {80930547-418C-49D9-9966-2A578389957C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {80930547-418C-49D9-9966-2A578389957C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {60C493F8-CB37-405C-8D66-8A05D7537755} + EndGlobalSection +EndGlobal