Skip to content

Commit 005f935

Browse files
authored
Unset MicrosoftNetCompilersToolsetVersion (#45881)
* Unset MicrosoftNetCompilersToolsetVersion * Update ClientResultsManager.cs
1 parent 6bf97c6 commit 005f935

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

eng/Versions.props

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,6 @@
159159
<MicrosoftNETCoreAppRuntimeVersion>$(MicrosoftNETCoreAppRuntimewinx64Version)</MicrosoftNETCoreAppRuntimeVersion>
160160
</PropertyGroup>
161161
<PropertyGroup Label="Manual">
162-
<!-- Bumping the Roslyn version used in order to ingest the new runtime source generators -->
163-
<UsingToolMicrosoftNetCompilers>true</UsingToolMicrosoftNetCompilers>
164-
<MicrosoftNetCompilersToolsetVersion>4.5.0-1.22517.9</MicrosoftNetCompilersToolsetVersion>
165162
<!-- DiagnosticAdapter package pinned temporarily (??) until migrated/deprecated -->
166163
<!-- This is the latest version found in dotnet-public. -->
167164
<MicrosoftExtensionsDiagnosticAdapterVersion>5.0.0-preview.3.20215.2</MicrosoftExtensionsDiagnosticAdapterVersion>

src/SignalR/common/Shared/ClientResultsManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public Task<T> AddInvocation<T>(string connectionId, string invocationId, Cancel
2323
var tcs = (TaskCompletionSourceWithCancellation<T>)state;
2424
if (completionMessage.HasResult)
2525
{
26-
tcs.SetResult((T)completionMessage.Result);
26+
tcs.SetResult((T)completionMessage.Result!);
2727
}
2828
else
2929
{

0 commit comments

Comments
 (0)