diff --git a/samples/MusicStore/ForTesting/Mocks/StartupSocialTesting.cs b/samples/MusicStore/ForTesting/Mocks/StartupSocialTesting.cs index 79c951d969..75ee9a19ee 100644 --- a/samples/MusicStore/ForTesting/Mocks/StartupSocialTesting.cs +++ b/samples/MusicStore/ForTesting/Mocks/StartupSocialTesting.cs @@ -142,7 +142,6 @@ namespace MusicStore services.AddMicrosoftAccountAuthentication(options => { - options.DisplayName = "MicrosoftAccount - Requires project changes"; options.ClientId = "[ClientId]"; options.ClientSecret = "[ClientSecret]"; options.Events = new OAuthEvents() diff --git a/samples/MusicStore/Startup.cs b/samples/MusicStore/Startup.cs index e0012c5b16..f9aebc926e 100644 --- a/samples/MusicStore/Startup.cs +++ b/samples/MusicStore/Startup.cs @@ -123,7 +123,7 @@ namespace MusicStore // dnx . web services.AddMicrosoftAccountAuthentication(options => { - options.DisplayName = "MicrosoftAccount - Requires project changes"; + // MicrosoftAccount requires project changes options.ClientId = "000000004012C08A"; options.ClientSecret = "GaMQ2hCnqAC6EcDLnXsAeBVIJOLmeutL"; });