Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .NET SDK to 9.0.100-preview.7.24367.5 #482

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: List files before
if: runner.os == 'Windows'
shell: pwsh
run: Get-ChildItem -Path (Join-Path "C:\Program Files\dotnet" "sdk-manifests") -Recurse

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4

- name: List files after
if: runner.os == 'Windows'
shell: pwsh
run: Get-ChildItem -Path (Join-Path ${env:DOTNET_ROOT} "sdk-manifests") -Recurse

- name: Build, Test and Publish
id: build
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.100-preview.7.24365.2",
"version": "9.0.100-preview.7.24367.5",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down
Loading