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