fix up files

This commit is contained in:
Tommy Parnell
2016-03-02 21:26:37 -05:00
parent 0ad4f449ea
commit 9f1b58b67c
6 changed files with 48 additions and 31 deletions

View File

@@ -11,12 +11,12 @@ gulp.task('build', function () {
));
});
gulp.task('carbon', function(){
gulp.task('carbon',['build'] ,function(cb){
carbon.exec({
carbon.exec({
heatFiles: ["installers/heat-web.rsp"],
candleFiles: ["installers/candle.rsp"],
lightFiles: ["installers/light.rsp"]
})
}, cb);
});

View File

@@ -2,10 +2,10 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension">
<Product Id="*"
Name="Gallery"
Name="Tommy"
Language="1033"
Version="1.0.0"
Manufacturer="Vistaprint"
Manufacturer="Tommy"
UpgradeCode="{aba1c34e-39c6-47cf-b50a-cae4e77f8204}">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
@@ -28,10 +28,7 @@
-->
<Property Id="REINSTALLMODE" Value="dmus" />
<Feature Id="Gallery" Title="Gallery">
<ComponentGroupRef Id="web_files" />
</Feature>
<Feature Id="GalleryWebsite" Title="GalleryWebConfig">
<Feature Id="TommyWebsite" Title="TommyWebConfig">
<ComponentGroupRef Id="web_files" />
<ComponentRef Id='WebsiteConfig' />
</Feature>
@@ -40,19 +37,15 @@
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="IISMain" Name='inetpub'>
<Directory Id="VistaprintFolder" Name="Vistaprint">
<Directory Id="INSTALLFOLDER" Name="Gallery">
<Directory Id="MainFolder" Name="Main">
<Directory Id="INSTALLFOLDER" Name="Tommy">
<Directory Id="Install_Web" Name="Web">
<Component Id='WebsiteConfig' Guid='{890bad01-9211-45b6-b3d0-98cb249a8e7c}' Win64="yes">
<iis:WebSite Id='Gallery' Description='Gallery' Directory='Install_Web' StartOnInstall='yes' ConfigureIfExists='yes' AutoStart='yes'>
<iis:WebAddress Id='DevGallery' Port='80' Header='devGallery' />
<iis:WebAddress Id='DevGalleryLong' Port='80' Header='devGallery.vistaprint.net' />
<iis:WebAddress Id='Gallery' Port='80' Header='Gallery' />
<iis:WebAddress Id='GalleryWildcard' Port='80' Header='*' />
<iis:WebAddress Id='GalleryLong' Port='80' Header='Gallery.vistaprint.net' />
<iis:WebApplication Id='GalleryApp' WebAppPool='GalleryAppPool' Name='Gallery' />
<iis:WebSite Id='Tommy' Description='Tommy' Directory='Install_Web' StartOnInstall='yes' ConfigureIfExists='yes' AutoStart='yes'>
<iis:WebAddress Id='TommyWildcard' Port='80' Header='*' />
<iis:WebApplication Id='TommyApp' WebAppPool='TommyAppPool' Name='Tommy' />
</iis:WebSite>
<iis:WebAppPool Id='GalleryAppPool' Identity="localSystem" RecycleMinutes="0" IdleTimeout="0" ManagedPipelineMode='Integrated' ManagedRuntimeVersion='v4.0' Name='Gallery' />
<iis:WebAppPool Id='TommyAppPool' Identity="localSystem" RecycleMinutes="0" IdleTimeout="0" ManagedPipelineMode='Integrated' ManagedRuntimeVersion='v4.0' Name='Tommy' />
</Component>
</Directory>
</Directory>

6
installers/candle.rsp Normal file
View File

@@ -0,0 +1,6 @@
-dSourceDir=WebApplication9
-nologo
-out output\installers\web\
installers\Product.wxs
output\installers\web\web_Files.gen.wxs
-ext WixIisExtension

7
installers/heat-web.rsp Normal file
View File

@@ -0,0 +1,7 @@
dir WebApplication9
-nologo
-cg web_files
-gg -scom -sreg -sfrag -srd
-dr Install_Web
-out output\installers\web\web_files.gen.wxs
-var var.SourceDir

9
installers/light.rsp Normal file
View File

@@ -0,0 +1,9 @@
-dSourceDir=WebApplication9
output\installers\web\web_files.gen.wixobj
output\installers\web\Product.wixobj
-out output\installers\web\Web.msi
-nologo
-sw1076
-sice:ICE80
-sice:ICE18
-ext WixIisExtension

View File

@@ -9,9 +9,11 @@
"author": "",
"license": "ISC",
"dependencies": {
"gulp-nuget-restore": "^0.2.0"
"gulp": "^3.9.1",
"gulp-msbuild": "^0.2.21",
"gulp-nuget-restore": "^0.2.0",
"hydrocarbon": "^0.1.2"
},
"devDependencies": {
"gulp-msbuild": "^0.2.21"
}
}