24 implementations of Parameters
dotnet (3)
Commands\MSBuild\MSBuildForwardingLogger.cs (1)
14
public string
Parameters
{ get; set; }
Commands\MSBuild\MSBuildLogger.cs (1)
268
public string?
Parameters
{ get; set; }
LoggerUtility.cs (1)
180
public string?
Parameters
{ get => ""; set { } }
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (1)
3579
public string?
Parameters
BackEnd\Components\Logging\CentralForwardingLogger.cs (1)
48
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)
329
public string
Parameters
{ get; set; }
Logging\ConsoleLogger.cs (1)
196
public string
Parameters
Logging\DistributedLoggers\ConfigurableForwardingLogger.cs (1)
41
public string?
Parameters
Logging\DistributedLoggers\DistributedFileLogger.cs (1)
197
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)
430
public string?
Parameters
{ get; set; } = null;
TelemetryInfra\InternalTelemetryConsumingLogger.cs (1)
15
public string?
Parameters
{ get; set; }
Microsoft.Build.Framework (1)
Telemetry\InternalTelemetryForwardingLogger.cs (1)
17
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.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\Logging\MSBuildDiagnosticLogger.cs (1)
16
public string?
Parameters
{ get; set; }
NuGet.Build.Tasks.Console (1)
ConsoleLoggingQueue.cs (1)
68
string ILogger.
Parameters
{ get; set; }
4 writes to Parameters
Microsoft.Build (3)
BackEnd\Components\Logging\LoggingService.cs (2)
1148
localForwardingLogger.
Parameters
= forwardingLogger.LoggerSwitchParameters;
1214
forwardingLogger.
Parameters
= description.LoggerSwitchParameters;
Logging\ReusableLogger.cs (1)
316
set => _originalLogger.
Parameters
= value;
MSBuild (1)
XMake.cs (1)
4036
logger.
Parameters
= loggerDescription.LoggerSwitchParameters;
14 references to Parameters
Microsoft.Build (2)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
437
parameters: actualLogger.
Parameters
));
Logging\ReusableLogger.cs (1)
314
get => _originalLogger.
Parameters
;
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildProjectLoader.cs (1)
330
fileName = fileNameProperty?.GetValue(logger) as string ?? logger.
Parameters
;
MSBuild (10)
XMake.cs (10)
1359
loggers[0].
Parameters
!= null &&
1360
loggers[0].
Parameters
.IndexOf("ENABLEMPLOGGING", StringComparison.OrdinalIgnoreCase) != -1 &&
1361
loggers[0].
Parameters
.IndexOf("V=", StringComparison.OrdinalIgnoreCase) == -1 && // Console logger could have had a verbosity
1362
loggers[0].
Parameters
.IndexOf("VERBOSITY=", StringComparison.OrdinalIgnoreCase) == -1) // override with the /clp switch
1383
if (logger.
Parameters
!= null &&
1384
(logger.
Parameters
.IndexOf("V=DIAG", StringComparison.OrdinalIgnoreCase) != -1 ||
1385
logger.
Parameters
.IndexOf("VERBOSITY=DIAG", StringComparison.OrdinalIgnoreCase) != -1))
1397
if (logger.CentralLogger?.
Parameters
!= null &&
1398
(logger.CentralLogger.
Parameters
.IndexOf("V=DIAG", StringComparison.OrdinalIgnoreCase) != -1 ||
1399
logger.CentralLogger.
Parameters
.IndexOf("VERBOSITY=DIAG", StringComparison.OrdinalIgnoreCase) != -1))
NuGet.Build.Tasks.Console (1)
ConsoleLoggingQueue.cs (1)
67
/// <inheritdoc cref="ILogger.
Parameters
" />