-
Notifications
You must be signed in to change notification settings - Fork 103
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
Version 1.4.0 not working when using .netcore 2.2 #840
Comments
Quick workaround:Add to your project a package reference: <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.7.0" /> Thanks for reporting the issue! I am able to repro it with
This issue is introduced in when we removed external dep to MessagePack in #803 To quickly workaround the issue, please add an explicit package reference to the assembly: <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.7.0" /> We will investigate to solve the issue from the SDK side and let you updated if there is any progress. |
Meanwhile, we need to improve our nightly build to cover the case, going through all the available frameworks. cc @wanlwanl @chenkennt |
Yes, will check and improve the our nightly build. |
Not sure if I misinterpreted this but I was using a .net core 2.2 as host project in combination with a .net standard 2.0 library. Both used version 1.4.0 of the nuget package. I checked all the logs and it seems my project was able to connect to the azure signalr service but the server never received the OnConnectedAsync.
It was only after I made a new project to test out if it was some other code that was bothering me that I found out that it only works if the host project uses .netcore 3.1 (didn't test 3.0).
I switched back to version 1.0.15 on my main project where I want to use signalr service and this seems to have fixed my issues.
Is .netcore 2.2 not "supported" for this library anymore or is something broken? I thought since it's .net standard 2.0 this still should work on .netcore 2.2
The text was updated successfully, but these errors were encountered: