diff --git a/Directory.Build.props b/Directory.Build.props index bc42175..85edd1b 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - 8.14.0 + 8.14.1 13.0 enable enable diff --git a/Directory.Packages.props b/Directory.Packages.props index 51fc031..8fae862 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -8,7 +8,7 @@ - + diff --git a/src/Weasel.Core/CommandLine/AssertCommand.cs b/src/Weasel.Core/CommandLine/AssertCommand.cs index efa374b..c9d3fc6 100644 --- a/src/Weasel.Core/CommandLine/AssertCommand.cs +++ b/src/Weasel.Core/CommandLine/AssertCommand.cs @@ -23,14 +23,14 @@ public override async Task Execute(WeaselInput input) { await database.AssertDatabaseMatchesConfigurationAsync().ConfigureAwait(false); AnsiConsole.MarkupLine( - $"[green]No database differences detected for '{database.Identifier.EscapeMarkup()}'.[/]"); + $"[green]No database differences detected for '{Markup.Escape(database.Identifier)}'.[/]"); } catch (DatabaseValidationException e) { success = false; AnsiConsole.MarkupLine( - $"[red]Database '{database.Identifier.EscapeMarkup()}' does not match the configuration![/]"); + $"[red]Database '{Markup.Escape(database.Identifier)}' does not match the configuration![/]"); AnsiConsole.WriteException(e); } }