[Console] Use Spectre.Console to show exceptions in the CLI.

GUI still uses `ConsoleWindow`.
This commit is contained in:
2023-10-08 04:10:19 +01:00
parent dccfa1c4ad
commit aa39281033
94 changed files with 343 additions and 133 deletions

View File

@@ -4745,6 +4745,33 @@ namespace Aaru.Localization {
}
}
/// <summary>
/// Looks up a localized string similar to Debug.
/// </summary>
public static string LogEntry_Type_Debug {
get {
return ResourceManager.GetString("LogEntry_Type_Debug", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error.
/// </summary>
public static string LogEntry_Type_Error {
get {
return ResourceManager.GetString("LogEntry_Type_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exception.
/// </summary>
public static string LogEntry_Type_Exception {
get {
return ResourceManager.GetString("LogEntry_Type_Exception", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Info.
/// </summary>