Skip to content

Commit

Permalink
.net8 build target framework (#25)
Browse files Browse the repository at this point in the history
* .net8 build target framework

* dotnet-version: '8.0.x' in pipeline

* with:
          dotnet-version: |
            6.0.407
            8.0.x
  • Loading branch information
dmitry-brazhenko authored Dec 10, 2023
1 parent d3c10f9 commit a8f3273
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.407'
dotnet-version: |
6.0.407
8.0.x
- name: Restore dependencies
run: dotnet restore
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.407'
dotnet-version: |
6.0.407
8.0.x
- name: Calculate Package Version
id: calculate_version
Expand Down
2 changes: 1 addition & 1 deletion SharpToken/SharpToken.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/dmitry-brazhenko/SharpToken</PackageProjectUrl>
Expand Down

0 comments on commit a8f3273

Please sign in to comment.