Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
dotnet-version: |
8.0.x
10.0.x
global-json-file: global.json

# Named, so the failure can say what to do about it. NU1004 on a Dependabot branch means
# the lock files were not regenerated, which is a chore rather than a defect -- and the
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
with:
dotnet-version: |
8.0.x
10.0.x
global-json-file: global.json

- name: Restore
run: dotnet restore --locked-mode
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
with:
dotnet-version: |
8.0.x
10.0.x
global-json-file: global.json

- name: Resolve version
id: version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/refresh-lock-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
with:
dotnet-version: |
8.0.x
10.0.x
global-json-file: global.json

# --force-evaluate is the whole point: it re-resolves rather than asserting the lock is right.
- run: dotnet restore --force-evaluate
Expand Down
7 changes: 7 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "10.0.303",
"rollForward": "latestPatch",
"allowPrerelease": false
}
}