I’m trying to get Identity Server v3 up and running. Below is what I've done.
- Created an empty ASP.NET web project
- Copied the StartUp and config files from the SelfHost (Minimal) (http://goo.gl/ojOjSJ) sample project
- Installed the following Nuget packages: OWIN, Microsoft.Owin, Microsoft.Owin.Host.SystemWeb, and Thinktecture.IdentityServer.v3
- Add the [assembly: OwinStartup(typeof(Startup))] attribute
When I run locally and try to hit one of the endpoints (/core/.well-known/jwks), I get “The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.” I know startup is running because I can set a breakpoint and it hits it.
Any help would be greatly appreciated.