Implemented interface member:
property
Parameters
Microsoft.Build.Framework.ILogger.Parameters
24 writes to Parameters
dotnet (3)
Commands\Run\VirtualProjectBuildingCommand.cs (1)
435Parameters = arg.IndexOf(':') is >= 0 and var index
LoggerUtility.cs (2)
33binaryLoggers.Add(new BinaryLogger { Parameters = filename }); 39binaryLoggers.Add(new BinaryLogger { Parameters = filename });
dotnet-format (1)
Workspaces\MSBuildWorkspaceLoader.cs (1)
37Parameters = binaryLogPath,
dotnet-watch (1)
Build\BuildReporter.cs (1)
43Parameters = "LogFile=" + binLogPath,
dotnet-watch.Tests (1)
CommandLine\BinaryLoggerTests.cs (1)
43var bl = new BinaryLogger() { Parameters = value };
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
694var logger = new BinaryLogger { Parameters = binlogPath };
Microsoft.Build.Engine.UnitTests (11)
BinaryLogger_Tests.cs (11)
107binaryLogger.Parameters = _logFile; 142Parameters = fileToReplay 201binaryLogger.Parameters = _logFile; 223Parameters = $"LogFile={replayedLogFile};OmitInitialInfo" 313binaryLogger.Parameters = $"LogFile={_logFile}"; 432Parameters = $"LogFile={_logFile}", 476Parameters = $"LogFile={_logFile}", 526Parameters = $"LogFile={_logFile}" 563Parameters = $"LogFile={_logFile}" 644Parameters = parameters 667Parameters = "{}"
Microsoft.Build.Tasks.UnitTests (2)
CodeTaskFactoryEmbeddedFileInBinlogTestHelper.cs (2)
57Parameters = $"LogFile={binlog.Path}", 109Parameters = $"LogFile={binlog.Path}",
Microsoft.Build.UnitTests.Shared (1)
EngineTestEnvironment.cs (1)
191binaryLogger.Parameters = binaryLoggerFilePath;
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
BuildHost.cs (1)
139logger = new BinaryLogger { Parameters = _binaryLogPath };
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
NetCoreTests.cs (1)
113var project = await workspace.OpenProjectAsync(projectFilePath, new BinaryLogger() { Parameters = binLogPath });
MSBuild (1)
XMake.cs (1)
4048BinaryLogger logger = new BinaryLogger { Parameters = arguments };
4 references to Parameters
Microsoft.Build (3)
Logging\BinaryLogger\BinaryLogger.cs (3)
153/// Optional expander of wildcard(s) within the LogFile path parameter of a binlog <see cref="Parameters"/>. 429if (Parameters == null) 435var parameters = Parameters.Split(MSBuildConstants.SemicolonChar, StringSplitOptions.RemoveEmptyEntries);
Microsoft.Build.UnitTests.Shared (1)
EngineTestEnvironment.cs (1)
218string binaryLoggerFilePath = binaryLogger.Parameters;