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)
849
var
result = BinaryLogger.ProcessParameters(null);
863
var
result = BinaryLogger.ProcessParameters(Array.Empty<string>());
877
var
result = BinaryLogger.ProcessParameters(new[] { "output.binlog" });
892
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog", "3.binlog" });
906
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog;ProjectImports=None" });
920
var
result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "1.binlog", "2.binlog" });
932
var
result = BinaryLogger.ProcessParameters(new[] { "Output.binlog", "output.BINLOG", "other.binlog" });
944
var
result = BinaryLogger.ProcessParameters(new[] {
MSBuild (1)
XMake.cs (1)
3513
var
processedParams = BinaryLogger.ProcessParameters(binaryLoggerParameters);