Skip to content

Commit

Permalink
Update Github Actions to use .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacrlevin committed Dec 18, 2023
1 parent 89595e9 commit 4b2258e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Desktop_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
BuildConfiguration: Release
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
GitHubReleaseUrl: https://github.com/isaacrlevin/presencelight/releases/download/Desktop-
Win10RID: net7.0-windows10.0.19041
Win10RID: net8.0-windows10.0.19041

steps:

Expand All @@ -47,10 +47,10 @@ jobs:
- name: setup-msbuild
uses: microsoft/setup-msbuild@v1

- name: Use .NET Core SDK 7.0.x
- name: Use .NET Core SDK 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
include-prerelease: true

- name: Nerdbank.GitVersioning
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Sign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
BuildConfiguration: Release
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
GitHubReleaseUrl: https://github.com/isaacrlevin/presencelight/releases/download/Desktop-
Win10RID: net7.0-windows10.0.19041
Win10RID: net8.0-windows10.0.19041

steps:

Expand All @@ -31,10 +31,10 @@ jobs:
- name: setup-msbuild
uses: microsoft/setup-msbuild@v1

- name: Use .NET Core SDK 7.0.x
- name: Use .NET Core SDK 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
include-prerelease: true

- name: Nerdbank.GitVersioning
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Web_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
with:
fetch-depth: 0

- name: Use .NET Core SDK 7.0.x
- name: Use .NET Core SDK 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
include-prerelease: true

- name: Nerdbank.GitVersioning
Expand Down

0 comments on commit 4b2258e

Please sign in to comment.