Removed all references to RuntimeInfoPage
This commit is contained in:
parent
ef92bf3834
commit
3c7cfbf340
|
|
@ -100,11 +100,6 @@ namespace MusicStore
|
||||||
|
|
||||||
app.UseDatabaseErrorPage();
|
app.UseDatabaseErrorPage();
|
||||||
|
|
||||||
// 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 Session.
|
// Configure Session.
|
||||||
app.UseSession();
|
app.UseSession();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -108,11 +108,6 @@ namespace MusicStore
|
||||||
|
|
||||||
app.UseDatabaseErrorPage();
|
app.UseDatabaseErrorPage();
|
||||||
|
|
||||||
// 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 Session.
|
// Configure Session.
|
||||||
app.UseSession();
|
app.UseSession();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -108,11 +108,6 @@ namespace MusicStore
|
||||||
|
|
||||||
app.UseDatabaseErrorPage();
|
app.UseDatabaseErrorPage();
|
||||||
|
|
||||||
// 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);
|
Configure(app);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -103,11 +103,6 @@ namespace MusicStore
|
||||||
app.UseDeveloperExceptionPage();
|
app.UseDeveloperExceptionPage();
|
||||||
app.UseDatabaseErrorPage();
|
app.UseDatabaseErrorPage();
|
||||||
|
|
||||||
// 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();
|
|
||||||
|
|
||||||
app.Use(async (context, next) =>
|
app.Use(async (context, next) =>
|
||||||
{
|
{
|
||||||
// Who will get admin access? For demo sake I'm listing the currently logged on user as the application
|
// Who will get admin access? For demo sake I'm listing the currently logged on user as the application
|
||||||
|
|
|
||||||
|
|
@ -115,11 +115,6 @@ namespace MusicStore
|
||||||
|
|
||||||
app.UseDatabaseErrorPage();
|
app.UseDatabaseErrorPage();
|
||||||
|
|
||||||
// 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 Session.
|
// Configure Session.
|
||||||
app.UseSession();
|
app.UseSession();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue