Improve certificate path probing with demo UNC target and remove Sonic container scan.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -11,6 +11,31 @@ public sealed class AppSettings
|
||||
public RuntimeSettings Runtime { get; set; } = new();
|
||||
|
||||
public AlwaysEncryptedSettings AlwaysEncrypted { get; set; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// Wenn aktiv, erscheint der Demo-UNC-Pfad auch ohne SQL-Update in der Zielliste.
|
||||
/// </summary>
|
||||
public DemoSettings Demo { get; set; } = new();
|
||||
}
|
||||
|
||||
public sealed class DemoSettings
|
||||
{
|
||||
public bool Enabled { get; set; } = true;
|
||||
|
||||
public string TargetDirectory { get; set; } =
|
||||
DemoCertificatePath.Directory;
|
||||
|
||||
public string TargetFileName { get; set; } =
|
||||
DemoCertificatePath.FileName;
|
||||
|
||||
public string ContainerName { get; set; } =
|
||||
"ct-ZADBService";
|
||||
|
||||
public string DisplayName { get; set; } =
|
||||
"DE / Demo ZADBService";
|
||||
|
||||
public string SonicConnectionName { get; set; } =
|
||||
"DE-Test";
|
||||
}
|
||||
|
||||
public sealed class DatabaseSettings
|
||||
|
||||
Reference in New Issue
Block a user