Serving static files in ASP.NET 5 MVC 6
问题 My wwwroot static files aren't being resolved. I understand that to serve static files, I need to put them in wwwroot: favicon.ico resolves just fine, but schema/v1-0.json does not. I get the generic message: The resource you are looking for has been removed, had its name changed, or is temporarily unavailable. I have the following wired up in Startup : app.UseMiddleware<StaticFileMiddleware>(new StaticFileOptions()); app.UseStaticFiles(); I am using DNX beta6. The above require beta5