
9884959 (1)
By:
dittodhole on
Mar 27th, 2012 | syntax:
None | size: 1.77 KB | hits: 13 | expires: Never
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*"
Name="!(wix.ProductName)"
Language="1031"
Version="1.2.10"
Manufacturer="!(wix.Manufacturer)"
UpgradeCode="02FD8E1A-A552-47AE-BDAA-F165702DE8DC">
<Package InstallerVersion="200"
Compressed="yes" />
<Media Id="1"
Cabinet="media1.cab"
EmbedCab="yes" />
<Directory Id="TARGETDIR"
Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="ManufacturereFolder"
Name="!(wix.Manufacturer)">
<Directory Id="INSTALLLOCATION"
Name="!(wix.ProductName)">
<Component Id="ProductComponent" Guid="E1F74E0D-7A3F-4F48-A8C9-E223A923FB86">
<File Id="Service.exe" Source="../Service/bin/$(var.Configuration)/Service.exe" />
<File Id="log4net.dll" Source="../Service/bin/$(var.Configuration)/log4net.dll" />
<ServiceInstall Id="Service.exe"
Name="!(wix.ProductName)"
DisplayName="!(wix.ProductName)"
Type="ownProcess"
Interactive="no"
Start="auto"
Vital="yes"
ErrorControl="normal"
Account="LOCALSYSTEM" />
<ServiceControl Id="Service.exe"
Name="!(wix.ProductName)"
Start="install"
Stop="both"
Remove="uninstall"
Wait="no" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<Feature Id="ProductFeature" Title="FirmenABC.Search.Service" Level="1">
<ComponentRef Id="ProductComponent" />
<ComponentGroupRef Id="Product.Generated" />
</Feature>
<WixVariable Id="Manufacturer" Value="Foo" />
<WixVariable Id="ProductName" Value="Foobar"/>
</Product>
</Wix>