@joebigelow / wix / commits / 4e0dc002

Remove partial WixPdb support.

Not as useful as intended and I'd rather remove it than potentially have to support something as weird as this.

Bob Arnson committed Apr 11, 2020 at 19:38 UTC 4e0dc00227352234856c608edb0405544fae4af9
2 files changed +2 -11
src/WixToolset.BuildTasks/wix.targets
+2 -2
@@ -233,8 +233,8 @@
233
234 <Error
235 Code="WIX103"
236 - Condition=" '$(WixPdbType)' != 'none' and '$(WixPdbType)' != 'full' and '$(WixPdbType)' != 'partial' "
237 - Text="The WixPdbType property '$(WixPdbType)' is not valid in project &quot;$(MSBuildProjectFile)&quot;. Supported values are: 'full', 'none', 'partial'" />
236 + Condition=" '$(WixPdbType)' != 'none' and '$(WixPdbType)' != 'full' "
237 + Text="The WixPdbType property '$(WixPdbType)' is not valid in project &quot;$(MSBuildProjectFile)&quot;. Supported values are: 'full', 'none'" />
238
239 </Target>
240
src/test/WixToolsetTest.BuildTasks/MsbuildFixture.cs
-9
@@ -65,15 +65,6 @@ namespace WixToolsetTest.BuildTasks
65 this.AssertWixpdb("Full", expectedOutputs);
66 }
67
68 - [Fact]
69 - public void CanBuildWithPartialWixpdb()
70 - {
71 - this.AssertWixpdb("partial", new[]
72 - {
73 - @"bin\en-US\MsiPackage.wixpdb",
74 - });
75 - }
76 -
68 [Fact]
69 public void CanBuildWithNoWixpdb()
70 {