aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-01-03 14:27:32 -0500
committerBob Arnson <bob@firegiant.com>2020-01-03 14:32:03 -0500
commit40f00152273239b4f77808903b18829afa1c4401 (patch)
tree16c0dae3d7c6fa98a87721c49310846fe98bfeda /src
parent87446442ddb5e22fda28b708ee74e75dcc9f5ef5 (diff)
downloadwix-40f00152273239b4f77808903b18829afa1c4401.tar.gz
wix-40f00152273239b4f77808903b18829afa1c4401.tar.bz2
wix-40f00152273239b4f77808903b18829afa1c4401.zip
Support overriding output extension.
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.BuildTasks/wix.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.BuildTasks/wix.targets b/src/WixToolset.BuildTasks/wix.targets
index da90226d..a3787309 100644
--- a/src/WixToolset.BuildTasks/wix.targets
+++ b/src/WixToolset.BuildTasks/wix.targets
@@ -63,7 +63,7 @@
63 The following properties are 'macros' that are available via IDE for pre and post build steps. 63 The following properties are 'macros' that are available via IDE for pre and post build steps.
64 All of them should be added to WixBuildMacroCollection to ensure that they are shown in the UI. 64 All of them should be added to WixBuildMacroCollection to ensure that they are shown in the UI.
65 --> 65 -->
66 <PropertyGroup> 66 <PropertyGroup Condition=" '$(TargetExt)' == '' ">
67 <TargetExt Condition=" '$(OutputType)' == 'Package' ">.msi</TargetExt> 67 <TargetExt Condition=" '$(OutputType)' == 'Package' ">.msi</TargetExt>
68 <TargetExt Condition=" '$(OutputType)' == 'Module' ">.msm</TargetExt> 68 <TargetExt Condition=" '$(OutputType)' == 'Module' ">.msm</TargetExt>
69 <TargetExt Condition=" '$(OutputType)' == 'PatchCreation' ">.pcp</TargetExt> 69 <TargetExt Condition=" '$(OutputType)' == 'PatchCreation' ">.pcp</TargetExt>