Reputation: 1227
Does anyone know the reference page for implementating Owin Authentication for .Net 4.0 Web application?
I could only find the examples for .Net 4.5. Unfortunately my application was build on .Net 4.0.
I would appreciate for any resources.
Upvotes: 0
Views: 160
Reputation: 25
You can go ahead an upgrade the application framework and create your own custom owin middleware which I have done in my existing application.
Upvotes: 0
Reputation: 1161
I believe you need .Net 4.5 as you need System.Security.Claims which was added in 4.5
Upvotes: 1