@joebigelow / wix-1 / commits / 267adbf8

Update to latest Core.

Sean Hall committed Jan 3, 2021 at 14:26 UTC 267adbf809c96b37e40a883a6b5241179de876d3
2 files changed +3 -3
src/WixToolset.BuildTasks/ToolsetTask.cs
+2 -2
@@ -112,10 +112,10 @@ namespace WixToolset.BuildTasks
112 protected virtual void BuildCommandLine(WixCommandLineBuilder commandLineBuilder)
113 {
114 commandLineBuilder.AppendIfTrue("-nologo", this.NoLogo);
115 - commandLineBuilder.AppendArrayIfNotNull("-sw ", this.SuppressSpecificWarnings);
115 + commandLineBuilder.AppendArrayIfNotNull("-sw", this.SuppressSpecificWarnings);
116 commandLineBuilder.AppendIfTrue("-sw", this.SuppressAllWarnings);
117 commandLineBuilder.AppendIfTrue("-v", this.VerboseOutput);
118 - commandLineBuilder.AppendArrayIfNotNull("-wx ", this.TreatSpecificWarningsAsErrors);
118 + commandLineBuilder.AppendArrayIfNotNull("-wx", this.TreatSpecificWarningsAsErrors);
119 commandLineBuilder.AppendIfTrue("-wx", this.TreatWarningsAsErrors);
120 }
121
src/test/WixToolsetTest.Sdk/MsbuildFixture.cs
+1 -1
@@ -240,7 +240,7 @@ namespace WixToolsetTest.Sdk
240 }
241 }
242
243 - [Theory(Skip = "Currently fails")] //https://github.com/wixtoolset/issues/issues/5946
243 + [Theory(Skip = "https://github.com/wixtoolset/issues/issues/5946")]
244 [InlineData(BuildSystem.DotNetCoreSdk)]
245 [InlineData(BuildSystem.MSBuild)]
246 [InlineData(BuildSystem.MSBuild64)]