Support overriding output extension.
Bob Arnson committed
Jan 3, 2020 at 14:27 UTC
40f00152273239b4f77808903b18829afa1c4401
1 file changed
+1
-1
src/WixToolset.BuildTasks/wix.targets
+1
-1
@@ -63,7 +63,7 @@
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.
65
-->
66
- <PropertyGroup>
66
+ <PropertyGroup Condition=" '$(TargetExt)' == '' ">
67
<TargetExt Condition=" '$(OutputType)' == 'Package' ">.msi</TargetExt>
68
<TargetExt Condition=" '$(OutputType)' == 'Module' ">.msm</TargetExt>
69
<TargetExt Condition=" '$(OutputType)' == 'PatchCreation' ">.pcp</TargetExt>