From 7b0d0517f9ecf393ee44e1b03ebedb022739491a Mon Sep 17 00:00:00 2001 From: Dexter Valkyrie Date: Tue, 27 Jun 2017 00:17:42 +0100 Subject: [PATCH] Update Startup.cs `builder.AddUserSecrets();` is deprecated and will not be available in ASP.NET Core 2.0. --- src/Services/Identity/Identity.API/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Identity/Identity.API/Startup.cs b/src/Services/Identity/Identity.API/Startup.cs index c5f72af13..d78251cea 100644 --- a/src/Services/Identity/Identity.API/Startup.cs +++ b/src/Services/Identity/Identity.API/Startup.cs @@ -37,7 +37,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();