fix: use cr-lf for line endings

This commit is contained in:
Andrew Welker
2025-08-06 09:00:45 -05:00
parent 0bc4388bfd
commit cf3ece4237
4 changed files with 38 additions and 48 deletions

View File

@@ -250,9 +250,9 @@ namespace PepperDash.Essentials.Core
}
CrestronConsole.ConsoleCommandResponse(
@"Type: '{0}'
Type: '{1}'
Description: {2}{3}", type.Key, Type, description, CrestronEnvironment.NewLine);
"Type: '{0}'\r\n" +
" Type: '{1}'\r\n" +
" Description: {2}{3}", type.Key, Type, description, CrestronEnvironment.NewLine);
}
}