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)
816
var
result = BinaryLogger.ProcessParameters(null);
830
var
result = BinaryLogger.ProcessParameters(Array.Empty<string>());
844
var
result = BinaryLogger.ProcessParameters(new[] { "output.binlog" });
859
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog", "3.binlog" });
873
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog;ProjectImports=None" });
887
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "1.binlog", "2.binlog" });
899
var
result = BinaryLogger.ProcessParameters(new[] { "Output.binlog", "output.BINLOG", "other.binlog" });
911
var
result = BinaryLogger.ProcessParameters(new[] {
MSBuild (1)
XMake.cs (1)
3513
var
processedParams = BinaryLogger.ProcessParameters(binaryLoggerParameters);