From b159af4e72701e3aa854d37da28480a524914285 Mon Sep 17 00:00:00 2001 From: David Barker Date: Fri, 24 Jan 2020 12:59:04 +0800 Subject: [PATCH] Added environment variables to the configuration load --- .../Infrastructure/Container.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/Infrastructure/Container.cs b/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/Infrastructure/Container.cs index 523ec3d..7ba989d 100644 --- a/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/Infrastructure/Container.cs +++ b/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/Infrastructure/Container.cs @@ -23,7 +23,7 @@ namespace AspNetCore.Identity.MongoDbCore.IntegrationTests.Infrastructure //per user config that is not committed to repo, use this to override settings (e.g. connection string) based on your local environment. .AddJsonFile($"appsettings.local.json", optional: true); - //builder.AddEnvironmentVariables(); + builder.AddEnvironmentVariables(); Configuration = builder.Build();