We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Despite Windows OS does provide support for handling ANSI colors in the console terminal it does not enable by default in the .net application.
Example:
Console.WriteLine("\x1b[36mTEST\x1b[0m");
Expected result: TEST
TEST
Actual result: \x1b[36mTEST\x1b[0m
\x1b[36mTEST\x1b[0m
Acceptance criteria: Console output containing ANSI colors gets colored
Solution: We need to adjust the Windows OS console mode to enable ANSI color processing support.
The text was updated successfully, but these errors were encountered:
fix(core): enable ansi colors console mode on windows
363fcb2
closes #131
9f876dd
fix(core): enable ANSI colors console mode on windows
e108b6f
f1091dd
adjust according to code review: #132 (comment) #132 (comment) #132 (comment) #132 (comment) #132 (comment) #132 (comment) #132 (comment) #132 (comment) closes #131
2690c18
adjust according to code review: #132 (comment) closes #131
fix(core): enable ANSI colors console mode on Windows (#132)
0a9cd9c
ostridm
Successfully merging a pull request may close this issue.
Despite Windows OS does provide support for handling ANSI colors in the console terminal it does not enable by default in the .net application.
Example:
Expected result:
TEST
Actual result:
\x1b[36mTEST\x1b[0m
Acceptance criteria: Console output containing ANSI colors gets colored
Solution: We need to adjust the Windows OS console mode to enable ANSI color processing support.
The text was updated successfully, but these errors were encountered: