Skip to content

Commit

Permalink
Use .NET 8.0.100 (#4580)
Browse files Browse the repository at this point in the history
* feature: Use .NET 8.0.100-rc.2

* specific version

* dotnet 8
  • Loading branch information
RicoSuter authored Nov 14, 2023
1 parent cc16278 commit 4002f3a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.100-rc.1.23463.5
8.0.100
- uses: actions/checkout@v3
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.100-rc.1.23463.5
8.0.100
- uses: actions/checkout@v3
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ steps:
displayName: 'Install .NET Core SDK'
inputs:
packageType: 'sdk'
version: '8.0.100-rc.1.23463.5'
version: '8.0.100'
includePreviewVersions: true
performMultiLevelLookup: true
useGlobalJson: true
Expand Down
2 changes: 1 addition & 1 deletion build/Build.CI.GitHubActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected override GitHubActionsJob GetJobs(GitHubActionsImage image, IReadOnlyC
// only need to list the ones that are missing from default image
newSteps.Insert(0, new GitHubActionsSetupDotNetStep(new[]
{
"8.0.100-rc.1.23463.5"
"8.0.100"
}));

newSteps.Insert(0, new GitHubActionsUseGnuTarStep());
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": "8.0.100-rc.1.23463.5",
"version": "8.0.100",
"rollForward": "latestMinor"
}
}
1 change: 1 addition & 0 deletions src/NSwag.sln
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "00 Build", "00 Build", "{6F
ProjectSection(SolutionItems) = preProject
..\azure-pipelines.yml = ..\azure-pipelines.yml
Directory.Build.props = Directory.Build.props
..\global.json = ..\global.json
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "..\build\_build.csproj", "{AC3D8125-AE21-49FC-A217-D96C7B585FF9}"
Expand Down

0 comments on commit 4002f3a

Please sign in to comment.