From 5024fe0d2445c20f8b2e12e326e370b78f8a7c21 Mon Sep 17 00:00:00 2001 From: Dario Griffo Date: Mon, 10 May 2021 22:17:23 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d0ff3d..3f6af83 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ public static IHostBuilder CreateHostBuilder(string[] args) { config .AddEnvironmentFile() // Configuring from '.env' file - .AddEnvironmentFile("with-prefix.env") // Variables like MyPrefix_MyVariable are loaded as MyPrefix_MyVariable + .AddEnvironmentFile("with-prefix.env") // Variables like MyPrefix_MyVariable are loaded as MyPrefix_MyVariable .AddEnvironmentFile("with-prefix.env", prefix: "MyPrefix_") // Variables like MyPrefix_MyVariable are loaded as MyVariable .AddEnvironmentVariables(); // Overriding with environment variables })