Add the runtime info page when running in dev environment

This commit is contained in:
Victor Hurdugaci 2014-10-15 15:38:29 -07:00
parent 033dc2e235
commit 0ef93b94dc
1 changed files with 6 additions and 0 deletions

View File

@ -104,6 +104,12 @@ namespace MusicStore
//Display custom error page in production when error occurs
//During development use the ErrorPage middleware to display error information in the browser
app.UseErrorPage(ErrorPageOptions.ShowAll);
// Add the runtime information page that can be used by developers
// to see what packages are used by the application
// default path is: /runtimeinfo
app.UseRuntimeInfoPage();
Configure(app);
}