-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Disable MSBuild console output wrapping #119282
New issue
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
Conversation
This changes the output from: ``` Some/long/path/that /gets/broken/up ``` To: ``` Some/long/path/that/gets/broken/up ``` Leaving wrapping up to the terminal and making C&P much easier.
b945f27 to
b2e7466
Compare
|
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
|
With this, can we remove this line? runtime/src/coreclr/build-runtime.cmd Line 58 in a6740f4
|
|
This also used to be old behavior before a random dependency update (I bisected it back to #67771 years ago). I'm all for this change, the default wrapping behavior is really annoying. |
|
/ba-g dead letter |
This changes the output from: ``` Some/long/path/that /gets/broken/up ``` To: ``` Some/long/path/that/gets/broken/up ``` Leaving wrapping up to the terminal and making C&P much easier.
This changes the output from:
To:
Leaving wrapping up to the terminal and making C&P much easier.
See also dotnet/msbuild#10578.