29 implementations of Parameters
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (1)
3589
public string?
Parameters
BackEnd\Components\Logging\CentralForwardingLogger.cs (1)
49
public string
Parameters
BuildCheck\Infrastructure\BuildCheckConnectorLogger.cs (1)
29
public string?
Parameters
{ get; set; }
BuildCheck\Infrastructure\BuildCheckForwardingLogger.cs (1)
27
public string?
Parameters
{ get; set; }
Logging\BaseConsoleLogger.cs (1)
51
public string
Parameters
{ get; set; } = null;
Logging\BinaryLogger\BinaryLogger.cs (1)
321
public string
Parameters
{ get; set; }
Logging\ConsoleLogger.cs (1)
196
public string
Parameters
Logging\DistributedLoggers\ConfigurableForwardingLogger.cs (1)
40
public string?
Parameters
Logging\DistributedLoggers\DistributedFileLogger.cs (1)
201
public string
Parameters
Logging\NullCentralLogger.cs (1)
35
public string
Parameters
Logging\ProfilerLogger.cs (1)
66
public string
Parameters
{ get; set; }
Logging\ReusableLogger.cs (1)
312
public string?
Parameters
Logging\SimpleErrorLogger.cs (1)
38
public string?
Parameters
Logging\TerminalLogger\ForwardingTerminalLogger.cs (1)
23
public string?
Parameters
{ get; set; }
Logging\TerminalLogger\TerminalLogger.cs (1)
424
public string?
Parameters
{ get; set; } = null;
TelemetryInfra\InternalTelemetryConsumingLogger.cs (1)
15
public string?
Parameters
{ get; set; }
Microsoft.Build.CommandLine.UnitTests (1)
TestAssets\MemberAccessException\LoggerProject\CustomLogger.cs (1)
20
public string?
Parameters
{ get; set; }
Microsoft.Build.Engine.UnitTests (5)
BackEnd\LoggingService_Tests.cs (3)
1419
public string
Parameters
1505
public string
Parameters
1591
public string
Parameters
BackEnd\TaskHost_Tests.cs (1)
1244
public string
Parameters
Telemetry\Telemetry_Tests.cs (1)
383
public string?
Parameters
{ get; set; }
Microsoft.Build.Framework (1)
Telemetry\InternalTelemetryForwardingLogger.cs (1)
17
public string?
Parameters
{ get; set; }
Microsoft.Build.UnitTests.Shared (1)
MockLogger.cs (1)
187
public string
Parameters
{ get; set; }
Microsoft.Build.Utilities.Core (2)
Logger.cs (1)
27
public virtual string
Parameters
{ get; set; }
MuxLogger.cs (1)
119
public string
Parameters
{ get; set; }
Microsoft.Build.Utilities.UnitTests (1)
MuxLogger_Tests.cs (1)
374
public string
Parameters
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\Logging\MSBuildDiagnosticLogger.cs (1)
16
public string?
Parameters
{ get; set; }
Microsoft.DotNet.ArcadeLogging (1)
PipelinesLogger.cs (1)
28
public string
Parameters
{ get; set; }
4 writes to Parameters
Microsoft.Build (3)
BackEnd\Components\Logging\LoggingService.cs (2)
1152
localForwardingLogger.
Parameters
= forwardingLogger.LoggerSwitchParameters;
1218
forwardingLogger.
Parameters
= description.LoggerSwitchParameters;
Logging\ReusableLogger.cs (1)
316
set => _originalLogger.
Parameters
= value;
MSBuild (1)
XMake.cs (1)
4025
logger.
Parameters
= loggerDescription.LoggerSwitchParameters;
14 references to Parameters
Microsoft.Build (1)
Logging\ReusableLogger.cs (1)
314
get => _originalLogger.
Parameters
;
Microsoft.Build.CommandLine.UnitTests (2)
XMake_Tests.cs (2)
2375
loggers[0].
Parameters
.ShouldBe(
2391
distributedLogger.CentralLogger.
Parameters
.ShouldBe(
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildProjectLoader.cs (1)
330
fileName = fileNameProperty?.GetValue(logger) as string ?? logger.
Parameters
;
MSBuild (10)
XMake.cs (10)
1354
loggers[0].
Parameters
!= null &&
1355
loggers[0].
Parameters
.IndexOf("ENABLEMPLOGGING", StringComparison.OrdinalIgnoreCase) != -1 &&
1356
loggers[0].
Parameters
.IndexOf("V=", StringComparison.OrdinalIgnoreCase) == -1 && // Console logger could have had a verbosity
1357
loggers[0].
Parameters
.IndexOf("VERBOSITY=", StringComparison.OrdinalIgnoreCase) == -1) // override with the /clp switch
1378
if (logger.
Parameters
!= null &&
1379
(logger.
Parameters
.IndexOf("V=DIAG", StringComparison.OrdinalIgnoreCase) != -1 ||
1380
logger.
Parameters
.IndexOf("VERBOSITY=DIAG", StringComparison.OrdinalIgnoreCase) != -1))
1392
if (logger.CentralLogger?.
Parameters
!= null &&
1393
(logger.CentralLogger.
Parameters
.IndexOf("V=DIAG", StringComparison.OrdinalIgnoreCase) != -1 ||
1394
logger.CentralLogger.
Parameters
.IndexOf("VERBOSITY=DIAG", StringComparison.OrdinalIgnoreCase) != -1))