aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-08-26 21:07:46 -0700
committerRob Mensching <rob@firegiant.com>2022-08-26 22:09:49 -0700
commit7b59be82400f3c4d6e4f294940118e85b77f5a92 (patch)
treeac6494a46b68a6099ccb6e6cb8228798b258a12e
parent2f8bf7c0cc4402777315e93536fbc63e1e1f0fee (diff)
downloadwix-7b59be82400f3c4d6e4f294940118e85b77f5a92.tar.gz
wix-7b59be82400f3c4d6e4f294940118e85b77f5a92.tar.bz2
wix-7b59be82400f3c4d6e4f294940118e85b77f5a92.zip
Add support for building patches straight from wix.targets
-rw-r--r--src/wix/WixToolset.Sdk/tools/wix.targets3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wix/WixToolset.Sdk/tools/wix.targets b/src/wix/WixToolset.Sdk/tools/wix.targets
index ccc7eab9..dd4df3fc 100644
--- a/src/wix/WixToolset.Sdk/tools/wix.targets
+++ b/src/wix/WixToolset.Sdk/tools/wix.targets
@@ -87,6 +87,7 @@
87 <PropertyGroup Condition=" '$(TargetExt)' == '' "> 87 <PropertyGroup Condition=" '$(TargetExt)' == '' ">
88 <TargetExt Condition=" '$(OutputType)' == 'Package' ">.msi</TargetExt> 88 <TargetExt Condition=" '$(OutputType)' == 'Package' ">.msi</TargetExt>
89 <TargetExt Condition=" '$(OutputType)' == 'Module' ">.msm</TargetExt> 89 <TargetExt Condition=" '$(OutputType)' == 'Module' ">.msm</TargetExt>
90 <TargetExt Condition=" '$(OutputType)' == 'Patch' ">.msp</TargetExt>
90 <TargetExt Condition=" '$(OutputType)' == 'PatchCreation' ">.pcp</TargetExt> 91 <TargetExt Condition=" '$(OutputType)' == 'PatchCreation' ">.pcp</TargetExt>
91 <TargetExt Condition=" '$(OutputType)' == 'Library' ">.wixlib</TargetExt> 92 <TargetExt Condition=" '$(OutputType)' == 'Library' ">.wixlib</TargetExt>
92 <TargetExt Condition=" '$(OutputType)' == 'Bundle' ">.exe</TargetExt> 93 <TargetExt Condition=" '$(OutputType)' == 'Bundle' ">.exe</TargetExt>
@@ -118,7 +119,7 @@
118 <!-- 119 <!--
119 Only Package, Module and Bundle output types create .wixpdbs, so reset the flag indicating symbols will be produced outside of those output types. 120 Only Package, Module and Bundle output types create .wixpdbs, so reset the flag indicating symbols will be produced outside of those output types.
120 --> 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>
122 </PropertyGroup> 123 </PropertyGroup>
123 124
124 <PropertyGroup> 125 <PropertyGroup>