Add markup escaping to validation error message

Co-authored-by: StevanFreeborn <65925598+StevanFreeborn@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-09 23:46:59 +00:00
co-authored by StevanFreeborn
parent f2fdc53222
commit 662d899196
@@ -53,7 +53,7 @@ internal sealed class DefaultCommand(
if (_fileSystem.File.Exists(settings.Stream) is false)
{
return ValidationResult.Error($"The specified stream file '{settings.Stream}' does not exist.");
return ValidationResult.Error($"The specified stream file '{settings.Stream.EscapeMarkup()}' does not exist.");
}
var fileExtension = _fileSystem.Path.GetExtension(settings.Stream).ToUpperInvariant();