From 3c7cfbf340cfcc12e4b11f53cb0dae62d03914d2 Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Mon, 16 May 2016 10:27:21 -0700 Subject: [PATCH] Removed all references to RuntimeInfoPage --- shared/Mocks/StartupOpenIdConnectTesting.cs | 5 ----- shared/Mocks/StartupSocialTesting.cs | 5 ----- src/MusicStore/Startup.cs | 5 ----- src/MusicStore/StartupNtlmAuthentication.cs | 5 ----- src/MusicStore/StartupOpenIdConnect.cs | 5 ----- 5 files changed, 25 deletions(-) diff --git a/shared/Mocks/StartupOpenIdConnectTesting.cs b/shared/Mocks/StartupOpenIdConnectTesting.cs index 3776c1d7e1..50cd48c15c 100644 --- a/shared/Mocks/StartupOpenIdConnectTesting.cs +++ b/shared/Mocks/StartupOpenIdConnectTesting.cs @@ -100,11 +100,6 @@ namespace MusicStore 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. app.UseSession(); diff --git a/shared/Mocks/StartupSocialTesting.cs b/shared/Mocks/StartupSocialTesting.cs index fdd5ff9c2e..1abca4d8b7 100644 --- a/shared/Mocks/StartupSocialTesting.cs +++ b/shared/Mocks/StartupSocialTesting.cs @@ -108,11 +108,6 @@ namespace MusicStore 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. app.UseSession(); diff --git a/src/MusicStore/Startup.cs b/src/MusicStore/Startup.cs index ede86a7cfe..89cff8d23a 100644 --- a/src/MusicStore/Startup.cs +++ b/src/MusicStore/Startup.cs @@ -108,11 +108,6 @@ namespace MusicStore 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); } diff --git a/src/MusicStore/StartupNtlmAuthentication.cs b/src/MusicStore/StartupNtlmAuthentication.cs index efd7e88c88..ea36fa92b5 100644 --- a/src/MusicStore/StartupNtlmAuthentication.cs +++ b/src/MusicStore/StartupNtlmAuthentication.cs @@ -103,11 +103,6 @@ namespace MusicStore app.UseDeveloperExceptionPage(); 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) => { // Who will get admin access? For demo sake I'm listing the currently logged on user as the application diff --git a/src/MusicStore/StartupOpenIdConnect.cs b/src/MusicStore/StartupOpenIdConnect.cs index 1b74acaefb..eb32db2186 100644 --- a/src/MusicStore/StartupOpenIdConnect.cs +++ b/src/MusicStore/StartupOpenIdConnect.cs @@ -115,11 +115,6 @@ namespace MusicStore 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. app.UseSession();