Closed dazinator closed 7 years ago
I've added signalr, web api and bunch of other owin middlewares to .net core 2 app. Lots of things are working properly (Except Swagger, which has a few problems in rare scenarios, that I'm working to make them fixed in .net core 2) This uses .net core 2 shim for full .net framework dlls & owin package for asp.net core, which is acceptable. Do you've any special problem?
owin package for asp.net core
That was my problem, I was using Microsoft.Owin
- have switched to using Micosoft.AspNetCore.Owin
and that has resolved it - thank you.
Adding the Microsoft.Owin package to a netstandard2.0 or netcoreapp2.0 project:
Will compatibility for these tfm's be added?