Merge branch 'release/11.1' into v11/dev
This commit is contained in:
@@ -39,6 +39,6 @@ public class HealthChecksNotificationSettings
|
||||
/// <summary>
|
||||
/// Gets or sets a value for the collection of health checks that are disabled for notifications.
|
||||
/// </summary>
|
||||
public IEnumerable<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
||||
Enumerable.Empty<DisabledHealthCheckSettings>();
|
||||
public List<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
||||
new List<DisabledHealthCheckSettings>();
|
||||
}
|
||||
|
||||
@@ -12,8 +12,8 @@ public class HealthChecksSettings
|
||||
/// <summary>
|
||||
/// Gets or sets a value for the collection of healthchecks that are disabled.
|
||||
/// </summary>
|
||||
public IEnumerable<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
||||
Enumerable.Empty<DisabledHealthCheckSettings>();
|
||||
public List<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
||||
new List<DisabledHealthCheckSettings>();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value for the healthcheck notification settings.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
|
||||
"version": "11.1.0-rc",
|
||||
"version": "11.1.0",
|
||||
"assemblyVersion": {
|
||||
"precision": "build"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user