@joebigelow / wix / commits / 7b59be82

Add support for building patches straight from wix.targets

Rob Mensching committed Aug 26, 2022 at 21:07 UTC 7b59be82400f3c4d6e4f294940118e85b77f5a92
1 file changed +2 -1
src/wix/WixToolset.Sdk/tools/wix.targets
+2 -1
@@ -87,6 +87,7 @@
87 <PropertyGroup Condition=" '$(TargetExt)' == '' ">
88 <TargetExt Condition=" '$(OutputType)' == 'Package' ">.msi</TargetExt>
89 <TargetExt Condition=" '$(OutputType)' == 'Module' ">.msm</TargetExt>
90 + <TargetExt Condition=" '$(OutputType)' == 'Patch' ">.msp</TargetExt>
91 <TargetExt Condition=" '$(OutputType)' == 'PatchCreation' ">.pcp</TargetExt>
92 <TargetExt Condition=" '$(OutputType)' == 'Library' ">.wixlib</TargetExt>
93 <TargetExt Condition=" '$(OutputType)' == 'Bundle' ">.exe</TargetExt>
@@ -118,7 +119,7 @@
119 <!--
120 Only Package, Module and Bundle output types create .wixpdbs, so reset the flag indicating symbols will be produced outside of those output types.
121 -->
121 - <_DebugSymbolsProduced Condition=" '$(OutputType)' != 'Package' and '$(OutputType)' != 'Module' and '$(OutputType)' != 'Bundle' ">false</_DebugSymbolsProduced>
122 + <_DebugSymbolsProduced Condition=" '$(OutputType)' != 'Package' and '$(OutputType)' != 'Module' and '$(OutputType)' != 'Patch' and '$(OutputType)' != 'Bundle' ">false</_DebugSymbolsProduced>
123 </PropertyGroup>
124
125 <PropertyGroup>