3 instantiations of ProcessedBinaryLoggerParameters
Microsoft.Build (3)
Logging\BinaryLogger\BinaryLogger.cs (3)
883
return new
ProcessedBinaryLoggerParameters
(distinctParameterSets, allConfigurationsIdentical, additionalFilePaths, duplicateFilePaths);
889
return new
ProcessedBinaryLoggerParameters
(distinctParameterSets, allConfigurationsIdentical, additionalFilePaths, duplicateFilePaths);
932
return new
ProcessedBinaryLoggerParameters
(distinctParameterSets, allConfigurationsIdentical, additionalFilePaths, duplicateFilePaths);
11 references to ProcessedBinaryLoggerParameters
Microsoft.Build (2)
Logging\BinaryLogger\BinaryLogger.cs (2)
850
/// Initializes a new instance of the <see cref="
ProcessedBinaryLoggerParameters
"/> struct.
874
public static
ProcessedBinaryLoggerParameters
ProcessParameters(string[] binaryLoggerParameters)
Microsoft.Build.Engine.UnitTests (8)
BinaryLogger_Tests.cs (8)
860
var
result = BinaryLogger.ProcessParameters(null);
874
var
result = BinaryLogger.ProcessParameters(Array.Empty<string>());
888
var
result = BinaryLogger.ProcessParameters(new[] { "output.binlog" });
903
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog", "3.binlog" });
917
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog;ProjectImports=None" });
931
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "1.binlog", "2.binlog" });
943
var
result = BinaryLogger.ProcessParameters(new[] { "Output.binlog", "output.BINLOG", "other.binlog" });
955
var
result = BinaryLogger.ProcessParameters(new[] {
MSBuild (1)
XMake.cs (1)
3526
var
processedParams = BinaryLogger.ProcessParameters(binaryLoggerParameters);