NetCoreServer
NetCoreServer copied to clipboard
.NET Framework cross compatibility?
Wondering if there's a way to have this target both as many libraries do. We're in the process of transitioning to Core but would like to use this in our Framework 4.6 app in the meantime if possible.
Thanks!
.NET Framework 4.6: Install-Package NetCoreServer -Version 1.9.0 .NET Core 2.0: Install-Package NetCoreServer -Version 2.0.0 .NET Core 3.0: Install-Package NetCoreServer -Version 3.0.0
Thanks! There should be a way to target all three with one package by the way. We've done it before internally. May be worth going that path so you don't have to maintain 3 versions.
Thanks for this, I too needed to use the package in 4.6.1 Framework
Any chance of Websocket support in the 1.9 (.NET Framework) branch?
If anyone runs across this and finds themselves in similar need. I merged the latest net core branch into the net framework branch, adding websocket support etc.
Install-Package NetCoreServer -Version 1.9.1
@h0st1le thanks a lot! Your merged version 1.9.1 uploaded to Nuget!