Skip to content

Commit 4139d6a

Browse files
authored
Update build project to .net 8 (#776)
* Update build project to .net 8 * Update MSBuild.StructuredLogger * Update nuget packages
1 parent ef7a2d0 commit 4139d6a

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

build/build.fsproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<OutputPath>buildOutput</OutputPath>
77
</PropertyGroup>
@@ -14,10 +14,8 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
18-
<PackageReference Include="Microsoft.Build.Framework" Version="17.3.2" />
19-
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.3.2" />
20-
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.3.2" />
17+
<PackageReference Include="Microsoft.Build" Version="17.9.5" />
18+
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.9.5" />
2119
<PackageReference Include="MSBuild.StructuredLogger" Version="2.2.235" />
2220
<PackageReference Include="Fake.DotNet.Cli" Version="6.0.0" />
2321
<PackageReference Include="Fake.Tools.Git" Version="6.0.0" />

build/build.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34525.116
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "build", "build.fsproj", "{80930547-418C-49D9-9966-2A578389957C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{80930547-418C-49D9-9966-2A578389957C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{80930547-418C-49D9-9966-2A578389957C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{80930547-418C-49D9-9966-2A578389957C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{80930547-418C-49D9-9966-2A578389957C}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {60C493F8-CB37-405C-8D66-8A05D7537755}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)