You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Check we have all values set - otherwise make sure Umbraco does NOT boot so it can be configured correctly
42
42
if(string.IsNullOrEmpty(containerName))
43
-
thrownewArgumentNullOrEmptyException("containerName",$"The Azure File System is missing the value '{Constants.Configuration.ContainerNameKey}' from AppSettings");
43
+
thrownewArgumentNullOrEmptyException("containerName",$"The Azure File System is missing the value '{Constants.Configuration.ContainerNameKey}:{ProviderAlias}' from AppSettings");
44
44
45
45
if(string.IsNullOrEmpty(rootUrl))
46
-
thrownewArgumentNullOrEmptyException("rootUrl",$"The Azure File System is missing the value '{Constants.Configuration.RootUrlKey}' from AppSettings");
46
+
thrownewArgumentNullOrEmptyException("rootUrl",$"The Azure File System is missing the value '{Constants.Configuration.RootUrlKey}:{ProviderAlias}' from AppSettings");
47
47
48
48
if(string.IsNullOrEmpty(connectionString))
49
-
thrownewArgumentNullOrEmptyException("connectionString",$"The Azure File System is missing the value '{Constants.Configuration.ConnectionStringKey}' from AppSettings");
49
+
thrownewArgumentNullOrEmptyException("connectionString",$"The Azure File System is missing the value '{Constants.Configuration.ConnectionStringKey}:{ProviderAlias}' from AppSettings");
50
50
51
51
if(string.IsNullOrEmpty(maxDays))
52
-
thrownewArgumentNullOrEmptyException("maxDays",$"The Azure File System is missing the value '{Constants.Configuration.MaxDaysKey}' from AppSettings");
52
+
thrownewArgumentNullOrEmptyException("maxDays",$"The Azure File System is missing the value '{Constants.Configuration.MaxDaysKey}:{ProviderAlias}' from AppSettings");
53
53
54
54
if(string.IsNullOrEmpty(useDefaultRoute))
55
-
thrownewArgumentNullOrEmptyException("useDefaultRoute",$"The Azure File System is missing the value '{Constants.Configuration.UseDefaultRouteKey}' from AppSettings");
55
+
thrownewArgumentNullOrEmptyException("useDefaultRoute",$"The Azure File System is missing the value '{Constants.Configuration.UseDefaultRouteKey}:{ProviderAlias}' from AppSettings");
56
56
57
57
if(string.IsNullOrEmpty(usePrivateContainer))
58
-
thrownewArgumentNullOrEmptyException("usePrivateContainer",$"The Azure File System is missing the value '{Constants.Configuration.UsePrivateContainer}' from AppSettings");
58
+
thrownewArgumentNullOrEmptyException("usePrivateContainer",$"The Azure File System is missing the value '{Constants.Configuration.UsePrivateContainer}:{ProviderAlias}' from AppSettings");
0 commit comments