Here is an issue to consider.
- If your using statements are insider a namespace declaration
- And your name space starts with Microsoft (for whatever reasons)
Then using Owin ==> looks at Microsoft.Owin The solution is to use using global::Owin;
Here is an issue to consider.
Then using Owin ==> looks at Microsoft.Owin The solution is to use using global::Owin;