Merge branch 'release/11.1' into v11/dev
This commit is contained in:
@@ -39,6 +39,6 @@ public class HealthChecksNotificationSettings
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value for the collection of health checks that are disabled for notifications.
|
/// Gets or sets a value for the collection of health checks that are disabled for notifications.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IEnumerable<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
public List<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
||||||
Enumerable.Empty<DisabledHealthCheckSettings>();
|
new List<DisabledHealthCheckSettings>();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ public class HealthChecksSettings
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value for the collection of healthchecks that are disabled.
|
/// Gets or sets a value for the collection of healthchecks that are disabled.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IEnumerable<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
public List<DisabledHealthCheckSettings> DisabledChecks { get; set; } =
|
||||||
Enumerable.Empty<DisabledHealthCheckSettings>();
|
new List<DisabledHealthCheckSettings>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value for the healthcheck notification settings.
|
/// 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",
|
"$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": {
|
"assemblyVersion": {
|
||||||
"precision": "build"
|
"precision": "build"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user