We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87189c9 commit 627ea13Copy full SHA for 627ea13
src/Umbraco.Cloud.StorageProviders.AzureBlob/AzureBlobComposer.cs
@@ -17,8 +17,10 @@ public void Compose(IUmbracoBuilder builder)
17
{
18
ArgumentNullException.ThrowIfNull(builder);
19
20
+ // There was a bug with normalizing prefixes in .NET 6 (fixed in 6.0.2), so safest thing is to add both prefixes until the TFM is updated to net7.0
21
var configuration = new ConfigurationBuilder()
22
.AddEnvironmentVariables("Umbraco:Cloud:")
23
+ .AddEnvironmentVariables("Umbraco__Cloud__")
24
.Build();
25
26
// Get options and manually validate (no need to add them to the service collection)
0 commit comments