Merge branch 'release/11.1' into v11/dev

This commit is contained in:
Nikolaj
2023-01-11 15:38:45 +01:00
3 changed files with 5 additions and 5 deletions

View File

@@ -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>();
}

View File

@@ -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.

View File

@@ -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"
},