aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks/ToolsetTask.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.BuildTasks/ToolsetTask.cs')
-rw-r--r--src/WixToolset.BuildTasks/ToolsetTask.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.BuildTasks/ToolsetTask.cs b/src/WixToolset.BuildTasks/ToolsetTask.cs
index 6b171eb0..d48f2a20 100644
--- a/src/WixToolset.BuildTasks/ToolsetTask.cs
+++ b/src/WixToolset.BuildTasks/ToolsetTask.cs
@@ -112,10 +112,10 @@ namespace WixToolset.BuildTasks
112 protected virtual void BuildCommandLine(WixCommandLineBuilder commandLineBuilder) 112 protected virtual void BuildCommandLine(WixCommandLineBuilder commandLineBuilder)
113 { 113 {
114 commandLineBuilder.AppendIfTrue("-nologo", this.NoLogo); 114 commandLineBuilder.AppendIfTrue("-nologo", this.NoLogo);
115 commandLineBuilder.AppendArrayIfNotNull("-sw ", this.SuppressSpecificWarnings); 115 commandLineBuilder.AppendArrayIfNotNull("-sw", this.SuppressSpecificWarnings);
116 commandLineBuilder.AppendIfTrue("-sw", this.SuppressAllWarnings); 116 commandLineBuilder.AppendIfTrue("-sw", this.SuppressAllWarnings);
117 commandLineBuilder.AppendIfTrue("-v", this.VerboseOutput); 117 commandLineBuilder.AppendIfTrue("-v", this.VerboseOutput);
118 commandLineBuilder.AppendArrayIfNotNull("-wx ", this.TreatSpecificWarningsAsErrors); 118 commandLineBuilder.AppendArrayIfNotNull("-wx", this.TreatSpecificWarningsAsErrors);
119 commandLineBuilder.AppendIfTrue("-wx", this.TreatWarningsAsErrors); 119 commandLineBuilder.AppendIfTrue("-wx", this.TreatWarningsAsErrors);
120 } 120 }
121 121