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
When running inside the Azure DevOps build pipeline the terminal width is not set and Spectre.Console is defaulting to 80 characters width.
I expect no additional line breaks when running in the build pipeline.
0.6.3
Regarding to issues and discuss for Spectre Console it exists 2 options to use
AnsiConsole.Profile.Width = int.MaxValue;
System.Console
Based on that the line during CI builds are escape markup I suggest to write directly to System.Console
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the Bug
When running inside the Azure DevOps build pipeline the terminal width is not set and Spectre.Console is defaulting to 80 characters width.
Expected Behavior
I expect no additional line breaks when running in the build pipeline.
Version Info
0.6.3
Additional Info
Regarding to issues and discuss for Spectre Console it exists 2 options to use
AnsiConsole.Profile.Width = int.MaxValue;
before executingSystem.Console
Based on that the line during CI builds are escape markup I suggest to write directly to
System.Console
The text was updated successfully, but these errors were encountered: