diff options
author | Raymond Feng <enjoyjava@gmail.com> | 2013-03-02 10:08:08 -0800 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2013-03-02 20:06:45 +0100 |
commit | 47e115063b24e83fe72acb36f76667ba2216cdd5 (patch) | |
tree | 2e24aa0f06facda57e6abe7b1bae327fc5dd1242 /tools/msvs | |
parent | 93156a60570fe4932bbc13a97b4c7ef0a791b7f4 (diff) | |
download | node-new-47e115063b24e83fe72acb36f76667ba2216cdd5.tar.gz |
windows/msi: fix msi build issue with WiX 3.7/3.8
The `heat` tool that gathers NPM source files wasn't getting called.
Closes #4896
Diffstat (limited to 'tools/msvs')
-rw-r--r-- | tools/msvs/msi/nodemsi.wixproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/msvs/msi/nodemsi.wixproj b/tools/msvs/msi/nodemsi.wixproj index 4520e28ae8..224db82520 100644 --- a/tools/msvs/msi/nodemsi.wixproj +++ b/tools/msvs/msi/nodemsi.wixproj @@ -8,6 +8,7 @@ <SchemaVersion>2.0</SchemaVersion> <OutputName>node-v$(NodeVersion)-$(Platform)</OutputName> <OutputType>Package</OutputType> + <EnableProjectHarvesting>True</EnableProjectHarvesting> <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath> <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath> <NodeVersion Condition=" '$(NodeVersion)' == '' ">0.0.0.0</NodeVersion> |