Add complete seed, Always Encrypted cert package, and TEST system DE-Test.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-29 08:30:12 +02:00
co-authored by Cursor
parent dcfcb5289d
commit e45ced8b73
11 changed files with 281 additions and 36 deletions
@@ -257,8 +257,11 @@ public sealed class SetupCoordinator
systems.Count > 0
? $"{systems.Count} System(e) für " +
$"{_settings.EnvironmentCode} gefunden."
: "Für die gewählte Umgebung wurde " +
"kein Sonic-System gefunden.",
: $"Für Umgebung '{_settings.EnvironmentCode}' " +
"wurde kein Sonic-System gefunden. " +
"Bitte Database/03_Seed.sql ausführen " +
"(legt DE-Test / ct-ZADBService an) " +
"oder eine SonicConnection in SQL anlegen.",
CredentialsReady =
systemExists
@@ -269,7 +272,10 @@ public sealed class SetupCoordinator
&& credentialExists
? $"System '{selection!.ConnectionName}', " +
$"Profil '{selection.CredentialName}' ausgewählt."
: "Bitte Sonic-System und Benutzerprofil auswählen."
: systems.Count == 0
? "Zuerst ein Sonic-System in SQL anlegen, " +
"dann System und Benutzerprofil wählen."
: "Bitte Sonic-System und Benutzerprofil auswählen."
};
}
catch (Exception ex)