Skip to content

Commit 3b4452b

Browse files
committed
.NET 6 -> 8 for building and testing.
1 parent b5f31a7 commit 3b4452b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/setup-dotnet@v4
4242
#url: https://github.com/actions/setup-dotnet
4343
with:
44-
dotnet-version: 6.0.x
44+
dotnet-version: 8.0.x
4545

4646
- name: Build
4747
shell: pwsh

.root.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<PropertyGroup>
10-
<TargetFramework>netstandard2.0</TargetFramework>
10+
<TargetFramework>net8.0</TargetFramework>
1111
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1212
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
1313
<IsPublishable>false</IsPublishable>

src/Subatomix.Build.Versioning.Semantic.msbuildproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<PropertyGroup>
1010
<Description>Semi-automatic SemVer2 semantic versioning for .NET and MSBuild</Description>
11-
<TargetFramework>netstandard2.0</TargetFramework>
11+
<TargetFramework>net8.0</TargetFramework>
1212
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1313
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
1414
<DevelopmentDependency>true</DevelopmentDependency>

test/Subatomix.Build.Versioning.Semantic.Tests.msbuildproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<PropertyGroup>
10-
<TargetFramework>netstandard2.0</TargetFramework>
10+
<TargetFramework>net8.0</TargetFramework>
1111
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1212
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
1313
<IsPublishable>false</IsPublishable>

test/cases/MultiTarget/MultiTarget.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-->
77

88
<PropertyGroup>
9-
<TargetFrameworks>net6.0;netstandard2.1</TargetFrameworks>
9+
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
1010
<Description>Multi-Target Test Project for $(Product)</Description>
1111
</PropertyGroup>
1212

test/cases/SingleTarget/SingleTarget.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-->
77

88
<PropertyGroup>
9-
<TargetFramework>net6.0</TargetFramework>
9+
<TargetFramework>net8.0</TargetFramework>
1010
<Description>Single-Target Test Project for $(Product)</Description>
1111
</PropertyGroup>
1212

0 commit comments

Comments
 (0)