Skip to content

Commit a8f3273

Browse files
.net8 build target framework (#25)
* .net8 build target framework * dotnet-version: '8.0.x' in pipeline * with: dotnet-version: | 6.0.407 8.0.x
1 parent d3c10f9 commit a8f3273

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: '6.0.407'
19+
dotnet-version: |
20+
6.0.407
21+
8.0.x
2022
2123
- name: Restore dependencies
2224
run: dotnet restore

.github/workflows/build-test-and-publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
- name: Setup .NET
2525
uses: actions/setup-dotnet@v1
2626
with:
27-
dotnet-version: '6.0.407'
27+
dotnet-version: |
28+
6.0.407
29+
8.0.x
2830
2931
- name: Calculate Package Version
3032
id: calculate_version

SharpToken/SharpToken.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
55
<PackageReadmeFile>README.md</PackageReadmeFile>
66
<PackageLicenseFile>LICENSE</PackageLicenseFile>
77
<PackageProjectUrl>https://github.com/dmitry-brazhenko/SharpToken</PackageProjectUrl>

0 commit comments

Comments
 (0)