-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for .NET 9 - release-8.0 (#1515)
* Updates for .NET 9 Co-authored-by: Nix Bohon <[email protected]>
- Loading branch information
1 parent
339f3af
commit 2b22cc9
Showing
7 changed files
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,29 +29,31 @@ jobs: | |
SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }} | ||
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) | ||
- name: Checkout | ||
uses: actions/checkout@v4.1.2 | ||
uses: actions/checkout@v4.2.2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup .NET SDK | ||
uses: actions/setup-dotnet@v4.0.0 | ||
uses: actions/setup-dotnet@v4.1.0 | ||
with: | ||
dotnet-version: 8.0.x | ||
dotnet-version: | | ||
9.0.x | ||
8.0.x | ||
- name: Build | ||
run: dotnet build src --configuration Release | ||
- name: Upload packages | ||
if: matrix.name == 'Windows' | ||
uses: actions/upload-artifact@v4.3.1 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
name: NuGet packages | ||
path: nugets/ | ||
retention-days: 7 | ||
- name: Azure login | ||
uses: azure/login@v2.1.1 | ||
uses: azure/login@v2.2.0 | ||
with: | ||
creds: ${{ secrets.AZURE_ACI_CREDENTIALS }} | ||
enable-AzPSSession: true | ||
- name: Setup RabbitMQ | ||
uses: Particular/[email protected].0 | ||
uses: Particular/[email protected].1 | ||
with: | ||
connection-string-name: RabbitMQTransport_ConnectionString | ||
tag: RabbitMQTransport | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.400", | ||
"version": "9.0.100", | ||
"rollForward": "latestFeature" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters