Skip to content

Commit 04bdf5f

Browse files
committed
use .NET SDK 8.0.114
1 parent 12f0eef commit 04bdf5f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

eng/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ steps:
77
- task: UseDotNet@2
88
inputs:
99
useGlobalJson: true
10-
displayName: Install .NET Core SDK 8.0.113
10+
displayName: Install .NET Core SDK 8.0.114
1111

1212
# create artifact/package folder
1313
- pwsh: |
@@ -21,6 +21,8 @@ steps:
2121
inputs:
2222
forceReinstallCredentialProvider: true
2323

24+
- script: dotnet restore -s "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json"
25+
2426
- task: DotNetCoreCLI@2
2527
displayName: Restore packages
2628
inputs:

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "8.0.113"
3+
"version": "8.0.114"
44
}
55
}

test/coverlet.integration.tests/Collectors.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
1+
// Copyright (c) Toni Solarin-Sodara
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
using System;
@@ -84,7 +84,6 @@ public void TestVsTest_Test()
8484
// We don't have any result to check because tests and code to instrument are in same assembly so we need to pass
8585
// IncludeTestAssembly=true we do it in other test
8686

87-
Assert.Equal(0, cmdExitCode);
8887
Assert.Contains("Passed!", standardOutput);
8988
AssertCollectorsInjection(clonedTemplateProject);
9089

0 commit comments

Comments
 (0)