From 4be81609274371fa8ecc2ad44652ac1f0eac6b60 Mon Sep 17 00:00:00 2001 From: William Godbe Date: Wed, 4 Jan 2023 12:42:08 -0800 Subject: [PATCH 1/2] Unset MicrosoftNetCompilersToolsetVersion --- eng/Versions.props | 3 --- 1 file changed, 3 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index c31cab230520..3d6dba8236ab 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -159,9 +159,6 @@ $(MicrosoftNETCoreAppRuntimewinx64Version) - - true - 4.5.0-1.22517.9 5.0.0-preview.3.20215.2 From 430f4a81f8d25ad18781026e7f195b1be7cd1b18 Mon Sep 17 00:00:00 2001 From: William Godbe Date: Wed, 4 Jan 2023 12:56:21 -0800 Subject: [PATCH 2/2] Update ClientResultsManager.cs --- src/SignalR/common/Shared/ClientResultsManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SignalR/common/Shared/ClientResultsManager.cs b/src/SignalR/common/Shared/ClientResultsManager.cs index f8c9e25d9fad..7bbc0b930824 100644 --- a/src/SignalR/common/Shared/ClientResultsManager.cs +++ b/src/SignalR/common/Shared/ClientResultsManager.cs @@ -23,7 +23,7 @@ public Task AddInvocation(string connectionId, string invocationId, Cancel var tcs = (TaskCompletionSourceWithCancellation)state; if (completionMessage.HasResult) { - tcs.SetResult((T)completionMessage.Result); + tcs.SetResult((T)completionMessage.Result!); } else {