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
Copy file name to clipboardExpand all lines: src/Microsoft.Azure.AppConfiguration.Functions.Worker/Microsoft.Azure.AppConfiguration.Functions.Worker.csproj
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@
24
24
<!-- Nuget Package Version Settings -->
25
25
26
26
<PropertyGroup>
27
-
<OfficialVersion>8.1.0-preview</OfficialVersion>
27
+
<OfficialVersion>8.2.0-preview</OfficialVersion>
28
28
</PropertyGroup>
29
29
30
30
<PropertyGroupCondition="'$(CDP_PATCH_NUMBER)'!='' AND '$(CDP_BUILD_TYPE)'=='Official'">
/// <param name="configurationBuilder">The configuration builder to add key-values to.</param>
35
35
/// <param name="connectionString">The connection string used to connect to the configuration store.</param>
36
-
/// <param name="optional">Determines the behavior of the App Configuration provider when an exception occurs while loading data from server. If false, the exception is thrown. If true, the exception is suppressed and no settings are populated from Azure App Configuration.</param>
36
+
/// <param name="optional">Determines the behavior of the App Configuration provider when an exception occurs while loading data from server. If false, the exception is thrown. If true, the exception is suppressed and no settings are populated from Azure App Configuration.
37
+
/// <exception cref="ArgumentException"/> will always be thrown when the caller gives an invalid input configuration (connection strings, endpoints, key/label filters...etc).
@@ -48,7 +50,9 @@ public static IConfigurationBuilder AddAzureAppConfiguration(
48
50
/// </summary>
49
51
/// <param name="configurationBuilder">The configuration builder to add key-values to.</param>
50
52
/// <param name="connectionStrings">The list of connection strings used to connect to the configuration store and its replicas.</param>
51
-
/// <param name="optional">Determines the behavior of the App Configuration provider when an exception occurs while loading data from server. If false, the exception is thrown. If true, the exception is suppressed and no settings are populated from Azure App Configuration.</param>
53
+
/// <param name="optional">Determines the behavior of the App Configuration provider when an exception occurs while loading data from server. If false, the exception is thrown. If true, the exception is suppressed and no settings are populated from Azure App Configuration.
54
+
/// <exception cref="ArgumentException"/> will always be thrown when the caller gives an invalid input configuration (connection strings, endpoints, key/label filters...etc).
@@ -63,7 +67,9 @@ public static IConfigurationBuilder AddAzureAppConfiguration(
63
67
/// </summary>
64
68
/// <param name="configurationBuilder">The configuration builder to add key-values to.</param>
65
69
/// <param name="action">A callback used to configure Azure App Configuration options.</param>
66
-
/// <param name="optional">Determines the behavior of the App Configuration provider when an exception occurs while loading data from server. If false, the exception is thrown. If true, the exception is suppressed and no settings are populated from Azure App Configuration.</param>
70
+
/// <param name="optional">Determines the behavior of the App Configuration provider when an exception occurs while loading data from server. If false, the exception is thrown. If true, the exception is suppressed and no settings are populated from Azure App Configuration.
71
+
/// <exception cref="ArgumentException"/> will always be thrown when the caller gives an invalid input configuration (connection strings, endpoints, key/label filters...etc).
0 commit comments