-
Notifications
You must be signed in to change notification settings - Fork 448
Upgrade SignalR.Core to netcoreapp3.0 #3315
Conversation
This updates samples, tests, and projects to netcoreapp3.0. Notably, the SignalR client remains netstandard2.0
@@ -23,8 +21,8 @@ | |||
|
|||
<!-- These references are used when running on the Benchmarks Server --> | |||
<ItemGroup Condition="'$(BenchmarksTargetFramework)' != ''"> | |||
<PackageReference Include="Microsoft.AspNetCore.All" Version="$(MicrosoftAspNetCoreAllPackageVersion)" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, don't change this stuff unless you know 100% that the benchmarks infrastructure works with it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We killed Microsoft.AspNetCore.All. Benchmarks infrastructure will have to update.
@@ -1,7 +1,7 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
|
|||
<PropertyGroup> | |||
<TargetFrameworks>netcoreapp2.2;net461</TargetFrameworks> | |||
<TargetFrameworks>netcoreapp3.0;net461</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove fullframework?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The client still supports it because the client is netstandard.
Tests passing now :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@BrennanConroy any remaining concerns with this?
This updates samples, tests, and projects to netcoreapp3.0.
Notably, the SignalR client remains netstandard2.0
Part of dotnet/aspnetcore#3754