From 71f77880d5ff99f0c4e75064cc6f90c6ef68c522 Mon Sep 17 00:00:00 2001 From: IgorSychev Date: Wed, 21 Jun 2017 16:39:04 +0300 Subject: [PATCH] make compile happy with obsolete AddUserSecrets extension method. --- src/Services/Identity/Identity.API/Startup.cs | 3 +-- src/Web/WebMVC/Startup.cs | 2 +- src/Web/WebSPA/Startup.cs | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Services/Identity/Identity.API/Startup.cs b/src/Services/Identity/Identity.API/Startup.cs index 0ba915cf3..ac8cd0f70 100644 --- a/src/Services/Identity/Identity.API/Startup.cs +++ b/src/Services/Identity/Identity.API/Startup.cs @@ -16,7 +16,6 @@ using Microsoft.eShopOnContainers.Services.Catalog.API.Infrastructure; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.HealthChecks; -using Identity.API.Certificate; using Autofac.Extensions.DependencyInjection; using Autofac; using Microsoft.Extensions.Logging; @@ -40,7 +39,7 @@ namespace eShopOnContainers.Identity if (env.IsDevelopment()) { // For more details on using the user secret store see http://go.microsoft.com/fwlink/?LinkID=532709 - builder.AddUserSecrets(); + builder.AddUserSecrets(); } builder.AddEnvironmentVariables(); diff --git a/src/Web/WebMVC/Startup.cs b/src/Web/WebMVC/Startup.cs index 75b7b1e9b..417f94c8b 100644 --- a/src/Web/WebMVC/Startup.cs +++ b/src/Web/WebMVC/Startup.cs @@ -29,7 +29,7 @@ namespace Microsoft.eShopOnContainers.WebMVC if (env.IsDevelopment()) { // For more details on using the user secret store see http://go.microsoft.com/fwlink/?LinkID=532709 - builder.AddUserSecrets(); + builder.AddUserSecrets(); } Configuration = builder.Build(); diff --git a/src/Web/WebSPA/Startup.cs b/src/Web/WebSPA/Startup.cs index 4f73d744d..062543168 100644 --- a/src/Web/WebSPA/Startup.cs +++ b/src/Web/WebSPA/Startup.cs @@ -31,7 +31,7 @@ namespace eShopConContainers.WebSPA if (env.IsDevelopment()) { // For more details on using the user secret store see http://go.microsoft.com/fwlink/?LinkID=532709 - builder.AddUserSecrets(); + builder.AddUserSecrets(); } Configuration = builder.Build();