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
10 changes: 2 additions & 8 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
dotnet-version: 10.0.x

- name: Cache NuGet packages
uses: actions/cache@v4
Expand Down Expand Up @@ -96,10 +93,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
dotnet-version: 10.0.x

- name: Pack
run: dotnet pack CentralConfigGenerator/CentralConfigGenerator.csproj -c Release -o ./artifacts
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,10 @@ jobs:
with:
fetch-depth: 0

# The tool multi-targets net8.0/net9.0/net10.0, so every SDK has to be present.
# The .NET 10 SDK builds every framework the tool targets, so one SDK is enough.
- uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
dotnet-version: |
8.0.x
9.0.x
10.0.x
dotnet-version: 10.0.x

- name: Resolve version
id: version
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ Key types: `MigrationService`, `AnalysisEngine`, `AutoFixService`, `Verification

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md). Build and test with:
See [CONTRIBUTING.md](CONTRIBUTING.md). Building the repository needs the .NET 10 SDK — it compiles all three target frameworks, so it is the only one you have to install.

```bash
dotnet build
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.0",
"version": "10.0.100",
"rollForward": "latestMajor",
"allowPrerelease": false
}
Expand Down
Loading