-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Target netstandard2.1 for SignalR client #10540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
7eacb9e
stash
BrennanConroy dfeb95b
fin
BrennanConroy 611829c
back to 3.0
BrennanConroy 76b9a0f
runtime check
BrennanConroy 4c2cdc5
version details
BrennanConroy 10c1df7
Ref assemblies
BrennanConroy fd54ac5
cleanup
BrennanConroy 2a07a90
three-fm
BrennanConroy befa189
fixup
BrennanConroy a9213c3
update
BrennanConroy 6f4eca8
fallback
BrennanConroy 4983ad4
add bcl.asyncinterfaces
BrennanConroy 2ac143a
connection abstractions
f008dcd
fix ref?
c86b9a6
packageversion suffix
911df50
rm netcoreapp3.0
BrennanConroy 07a3d46
really....
BrennanConroy c050fc7
remove more 3.0
BrennanConroy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 8 additions & 1 deletion
9
...Servers/Connections.Abstractions/ref/Microsoft.AspNetCore.Connections.Abstractions.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
<!-- This file is automatically generated. --> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<Compile Include="Microsoft.AspNetCore.Connections.Abstractions.netstandard2.0.cs" /> | ||
<Reference Include="Microsoft.AspNetCore.Http.Features" /> | ||
<Reference Include="Microsoft.Extensions.ActivatorUtilities.Sources" /> | ||
<Reference Include="System.IO.Pipelines" /> | ||
<Reference Include="Microsoft.Bcl.AsyncInterfaces" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'"> | ||
<Compile Include="Microsoft.AspNetCore.Connections.Abstractions.netstandard2.1.cs" /> | ||
<Reference Include="Microsoft.AspNetCore.Http.Features" /> | ||
<Reference Include="Microsoft.Extensions.ActivatorUtilities.Sources" /> | ||
<Reference Include="System.IO.Pipelines" /> | ||
</ItemGroup> | ||
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@natemcmaster Here is a fun one, should I put the same comment as below, but modified slightly because the package is irrelevant on
>netstandard2.0
?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.
I don't know what this assembly is. Is it like a polyfill for IAsyncEnumerable on ns2.0?
Uh oh!
There was an error while loading. Please reload this page.
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.
Yeah and IAsyncDisposable
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.
Then yes, it's probably ok the classify this the same as the other compilation-only refs.