21 references to CommandLineBuilder
Microsoft.DotNet.Build.Tasks.Workloads (21)
Wix\CompilerToolTask.cs (6)
74CommandLineBuilder.AppendSwitchIfNotNull("-out ", OutputPath); 76CommandLineBuilder.AppendArrayIfNotNull("-d", PreprocessorDefinitions.ToArray()); 77CommandLineBuilder.AppendArrayIfNotNull("-ext ", Extensions.ToArray()); 78CommandLineBuilder.AppendSwitchIfNotNull("-arch ", Architecture); 79CommandLineBuilder.AppendFileNamesIfNotNull(_sourceFiles.ToArray(), " "); 80return CommandLineBuilder.ToString();
Wix\HarvesterToolTask.cs (9)
110CommandLineBuilder.AppendSwitchIfNotNull("dir ", SourceDirectory); 112CommandLineBuilder.AppendSwitchIfNotNull("-cg ", ComponentGroupName); 115CommandLineBuilder.AppendSwitch($"-var var.{SourceVariableName}"); 120CommandLineBuilder.AppendSwitch("-ag"); 124CommandLineBuilder.AppendSwitch("-gg"); 132CommandLineBuilder.AppendSwitch(s_SuppressionArguments[suppression]); 136CommandLineBuilder.AppendSwitchIfNotNull("-dr ", DirectoryReference); 137CommandLineBuilder.AppendSwitchIfNotNull("-o ", OutputFile); 139return CommandLineBuilder.ToString();
Wix\LinkerToolTask.cs (6)
76CommandLineBuilder.AppendSwitchIfNotNull("-o ", OutputFile); 77CommandLineBuilder.AppendSwitchIfTrue("-fv", AddFileVersion); 78CommandLineBuilder.AppendArrayIfNotNull("-ext ", Extensions.ToArray()); 79CommandLineBuilder.AppendSwitchIfNotNull("-sice:", SuppressIces); 80CommandLineBuilder.AppendFileNamesIfNotNull(SourceFiles.ToArray(), " "); 82return CommandLineBuilder.ToString();