diff options
Diffstat (limited to 'buildscripts/packaging/msi/MongoDB_64.wixproj')
-rwxr-xr-x | buildscripts/packaging/msi/MongoDB_64.wixproj | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/buildscripts/packaging/msi/MongoDB_64.wixproj b/buildscripts/packaging/msi/MongoDB_64.wixproj new file mode 100755 index 00000000000..58722d4e8c6 --- /dev/null +++ b/buildscripts/packaging/msi/MongoDB_64.wixproj @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">x64</Platform>
+ <Version Condition=" '$(Version)' == '' ">2.4.0</Version>
+ <License Condition=" '$(License)' == '' ">..\..\..\distsrc</License>
+ <Source Condition=" '$(Source)' == '' ">..\..\..\build\win32\64\mongo</Source>
+ <ProductVersion>3.5</ProductVersion>
+ <ProjectGuid>{fa9df7fc-a283-4eb8-b0c6-f9fa31e22cbc}</ProjectGuid>
+ <SchemaVersion>2.0</SchemaVersion>
+ <OutputName>MongoDB_$(Version)_x64</OutputName>
+ <OutputType>Package</OutputType>
+ <DefineSolutionProperties>false</DefineSolutionProperties>
+ <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
+ <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
+ <Name>MongoDB</Name>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
+ <OutputPath>bin\$(Configuration)\$(Platform)\</OutputPath>
+ <IntermediateOutputPath>obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
+ <DefineConstants>MongoDBVersion=$(Version);LicenseSource=$(License);BinarySource=$(Source)</DefineConstants>
+ <TreatWarningsAsErrors>True</TreatWarningsAsErrors>
+ <VerboseOutput>True</VerboseOutput>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
+ <OutputPath>bin\$(Configuration)\$(Platform)\</OutputPath>
+ <IntermediateOutputPath>obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
+ <DefineConstants>MongoDBVersion=$(Version);LicenseSource=$(License);BinarySource=$(Source)</DefineConstants>
+ <TreatWarningsAsErrors>True</TreatWarningsAsErrors>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="wxs\BinaryFragment.wxs" />
+ <Compile Include="wxs\FeatureFragment.wxs" />
+ <Compile Include="wxs\Installer_64.wxs" />
+ <Compile Include="wxs\LicensingFragment.wxs" />
+ </ItemGroup>
+ <ItemGroup>
+ <WixExtension Include="WixUIExtension">
+ <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
+ <Name>WixUIExtension</Name>
+ </WixExtension>
+ </ItemGroup>
+ <ItemGroup>
+ <Folder Include="wxs\" />
+ </ItemGroup>
+ <Import Project="$(WixTargetsPath)" />
+ <!--
+ To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Wix.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project>
\ No newline at end of file |