3 instantiations of ProcessedBinaryLoggerParameters
Microsoft.Build (3)
Logging\BinaryLogger\BinaryLogger.cs (3)
883return new ProcessedBinaryLoggerParameters(distinctParameterSets, allConfigurationsIdentical, additionalFilePaths, duplicateFilePaths); 889return new ProcessedBinaryLoggerParameters(distinctParameterSets, allConfigurationsIdentical, additionalFilePaths, duplicateFilePaths); 932return 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. 874public static ProcessedBinaryLoggerParameters ProcessParameters(string[] binaryLoggerParameters)
Microsoft.Build.Engine.UnitTests (8)
BinaryLogger_Tests.cs (8)
849var result = BinaryLogger.ProcessParameters(null); 863var result = BinaryLogger.ProcessParameters(Array.Empty<string>()); 877var result = BinaryLogger.ProcessParameters(new[] { "output.binlog" }); 892var result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog", "3.binlog" }); 906var result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "2.binlog;ProjectImports=None" }); 920var result = BinaryLogger.ProcessParameters(new[] { "1.binlog", "1.binlog", "2.binlog" }); 932var result = BinaryLogger.ProcessParameters(new[] { "Output.binlog", "output.BINLOG", "other.binlog" }); 944var result = BinaryLogger.ProcessParameters(new[] {
MSBuild (1)
XMake.cs (1)
3513var processedParams = BinaryLogger.ProcessParameters(binaryLoggerParameters);