The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / tools / msvs / msi / nodemsi.wixproj @ 35a1421e

History | View | Annotate | Download (3.3 KB)

1
<?xml version="1.0" encoding="utf-8"?>
2

    
3
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
  <PropertyGroup>
5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
7
    <ProductVersion>3.5</ProductVersion>
8
    <ProjectGuid>{1d808ff0-b5a9-4be9-859d-b334b6f48be2}</ProjectGuid>
9
    <SchemaVersion>2.0</SchemaVersion>
10
    <OutputName>node-v$(NodeVersion)-$(Platform)</OutputName>
11
    <OutputType>Package</OutputType>
12
    <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
13
    <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
14
    <NodeVersion Condition=" '$(NodeVersion)' == '' ">0.0.0.0</NodeVersion>
15
  </PropertyGroup>
16
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
17
    <OutputPath>..\..\..\$(Configuration)\</OutputPath>
18
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
19
    <DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NPMSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFilesFolder</DefineConstants>
20
  </PropertyGroup>
21
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
22
    <OutputPath>..\..\..\$(Configuration)\</OutputPath>
23
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
24
    <DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NPMSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFilesFolder</DefineConstants>
25
  </PropertyGroup>
26
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
27
    <OutputPath>..\..\..\$(Configuration)\</OutputPath>
28
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
29
    <DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NPMSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFiles64Folder</DefineConstants>
30
  </PropertyGroup>
31
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
32
    <OutputPath>..\..\..\$(Configuration)\</OutputPath>
33
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
34
    <DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NPMSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFiles64Folder</DefineConstants>
35
  </PropertyGroup>
36
  <ItemGroup>
37
    <Compile Include="product.wxs" />
38
    <Compile Include="..\..\..\npm.wxs" />
39
  </ItemGroup>
40
  <ItemGroup>
41
    <WixExtension Include="WixUIExtension">
42
      <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
43
      <Name>WixUIExtension</Name>
44
    </WixExtension>
45
    <WixExtension Include="WiXUtilExtension">
46
      <HintPath>$(WixExtDir)\WiXUtilExtension.dll</HintPath>
47
      <Name>WiXUtilExtension</Name>
48
    </WixExtension>
49
  </ItemGroup>
50
  <Import Project="$(WixTargetsPath)" />
51
    <Target Name="BeforeBuild">
52
      <HeatDirectory ToolPath="$(WixToolPath)" Directory="..\..\..\deps\npm" PreprocessorVariable="var.NPMSourceDir" DirectoryRefId="NodeModulesFolder" ComponentGroupName="NPMFiles" GenerateGuidsNow="true" SuppressFragments="false" OutputFile="..\..\..\npm.wxs">
53
      </HeatDirectory>
54
    </Target>
55
</Project>