1 write to BufferWidth
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
396
Console.
BufferWidth
= command.ConsoleConfiguration.BufferWidth;
15 references to BufferWidth
dotnet (1)
Commands\Test\MTP\Terminal\SystemConsole.cs (1)
19
public int BufferWidth => Console.
BufferWidth
;
dotnet-svcutil.xmlserializer (1)
Microsoft\Tools\ServiceModel\SvcUtil\ToolConsole.cs (1)
634
return Console.
BufferWidth
;
dotnet-svcutil-lib (2)
HelpGenerator.cs (2)
453
int bufferWidth = Console.
BufferWidth
;
457
return Console.
BufferWidth
;
Microsoft.Build (7)
BackEnd\Client\MSBuildClient.cs (1)
373
consoleBufferWidth = Console.
BufferWidth
;
Logging\InProcessConsoleConfiguration.cs (1)
20
public int BufferWidth => Console.
BufferWidth
;
Logging\ParallelLogger\ConsoleOutputAligner.cs (1)
12
/// Align output to multiple lines so no logged test is lost due to limited <see cref="Console.
BufferWidth
"/>.
Logging\TerminalLogger\Terminal.cs (4)
62
/// Gets the width of the <see cref="Console.
BufferWidth
"/> of the underlying <see cref="Console"/>.
64
/// If the <see cref="Console.
BufferWidth
"/> is zero, returns a large number to indicate that the width is unknown/synthetic.
79
return Console.
BufferWidth
== 0 ? BigUnknownDimension : Console.
BufferWidth
;
Microsoft.Build.Framework (1)
NativeMethods.cs (1)
1596
if (Console.BufferHeight == 0 || Console.
BufferWidth
== 0)
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
857
int screenWidth = columns ?? Console.
BufferWidth
;
Microsoft.ML.Maml (1)
HelpCommand.cs (1)
349
int screenWidth = (columns ?? Console.
BufferWidth
) - 1;
Microsoft.TemplateEngine.Cli (1)
CliEnvironment.cs (1)
34
public int ConsoleBufferWidth => Console.IsOutputRedirected ? DefaultBufferWidth : Console.
BufferWidth
;