Skip to content

Commit 77a9a81

Browse files
committed
Use latest 2.1.x .NET SDK
- hopefully fixes CI build - nits: - quiet `dotnet` in CI (where `dotnet` is always new) - add a missing blank line
1 parent 549c16c commit 77a9a81

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ parameters:
1414
variables:
1515
- name: DOTNET_CLI_TELEMETRY_OPTOUT
1616
value: 1
17+
- name: DOTNET_NOLOGO
18+
value: 1
1719
# Run CodeQL3000 tasks in a separate internal pipeline; not needed here.
1820
- name: Codeql.SkipTaskAutoInjection
1921
value: true

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": "2.1.500",
3+
"version": "2.1.818",
44
"rollForward": "major"
55
}
66
}

src/System.Net.Http.Formatting/Handlers/ProgressStream.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public override async Task<int> ReadAsync(byte[] buffer, int offset, int count,
6767
ReportBytesReceived(readCount, userState: null);
6868
return readCount;
6969
}
70+
7071
#if !NETFX_CORE // BeginX and EndX are not supported on streams in portable libraries
7172
public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
7273
{

0 commit comments

Comments
 (0)