Skip to content

Commit 581046a

Browse files
Update .NET SDK to 10-rc.2 (#322)
* Update .NET SDK to 10-rc.2 * Include github logger * Try switching to xplat codecov * use specific sdk version in actions file * reinstate codecov config
1 parent 599bc1b commit 581046a

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-dotnet@v5
2626
with:
2727
dotnet-version: |
28-
10.0.x
28+
10.0.100-rc.2.25502.107
2929
9.0.x
3030
3131
# Netfx testing on non-Windows OSes requires mono

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/setup-dotnet@v5
3434
with:
3535
dotnet-version: |
36-
10.0.x
36+
10.0.100-rc.2.25502.107
3737
9.0.x
3838
3939
- run: make generate-docs

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/setup-dotnet@v5
1717
with:
1818
dotnet-version: |
19-
10.0.x
19+
10.0.100-rc.2.25502.107
2020
9.0.x
2121
2222
- name: Setup Mono

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ build: restore
2828
dotnet build --no-restore --configuration $(CONFIGURATION) $(ADDITIONAL_ARGS)
2929

3030
test-clr: build
31-
dotnet test --configuration $(CONFIGURATION) $(ADDITIONAL_ARGS) \
31+
dotnet test \
32+
--configuration $(CONFIGURATION) \
33+
$(ADDITIONAL_ARGS) \
3234
--blame \
3335
-p:SkipTUnitTestRuns=true \
34-
--results-directory $(ARTIFACT_PATH)/testResults \
35-
$(CODECOV_ARGS) \
3636
--logger "trx" \
37+
$(CODECOV_ARGS) \
38+
--results-directory $(ARTIFACT_PATH)/testResults \
3739
-- \
3840
RunConfiguration.CollectSourceInformation=true
3941

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "10.0.100-rc.1",
3+
"version": "10.0.100-rc.2",
44
"rollForward": "minor",
55
"allowPrerelease": true
66
}

0 commit comments

Comments
 (0)