Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Commit 7b65e29

Browse files
Merge pull request #154 from DuendeSoftware/brock/net7
update from .NET 7 RC2 to .NET 7 RTM
2 parents 62761f5 + 50f22af commit 7b65e29

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
dotnet-version: |
3636
6.0.x
37-
7.0.100-rc.2.22477.23
37+
7.0.x
3838
3939
- run: dotnet --info
4040

.github/workflows/codeql.yml

+9
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ jobs:
4040
- name: Checkout repository
4141
uses: actions/checkout@v3
4242

43+
- name: Setup dotnet
44+
uses: actions/setup-dotnet@v1
45+
with:
46+
dotnet-version: |
47+
6.0.x
48+
7.0.x
49+
50+
- run: dotnet --info
51+
4352
# Initializes the CodeQL tools for scanning.
4453
- name: Initialize CodeQL
4554
uses: github/codeql-action/init@v2

Directory.Build.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<PropertyGroup Condition=" '$(TargetFramework)' == 'net7.0'">
10-
<FrameworkVersionRuntime>7.0.0-rc.2.*</FrameworkVersionRuntime>
11-
<FrameworkVersionTesting>7.0.0-rc.2.*</FrameworkVersionTesting>
10+
<FrameworkVersionRuntime>7.0.0</FrameworkVersionRuntime>
11+
<FrameworkVersionTesting>7.0.0</FrameworkVersionTesting>
1212
<YarpVersion>1.0.1</YarpVersion>
1313
</PropertyGroup>
1414

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "7.0.100-rc.2.22477.23",
3+
"version": "7.0.100",
44
"rollForward": "latestMajor",
5-
"allowPrerelease": true
5+
"allowPrerelease": false
66
}
77
}

0 commit comments

Comments
 (0)