aspnet / AspNetKatana

Microsoft's OWIN implementation, the Katana project
Apache License 2.0
967 stars 334 forks source link

netstandard project compat #105

Closed dazinator closed 7 years ago

dazinator commented 7 years ago

Adding the Microsoft.Owin package to a netstandard2.0 or netcoreapp2.0 project:

image

Will compatibility for these tfm's be added?

ysmoradi commented 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?

dazinator commented 7 years ago

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.