
product.wxs
By: a guest on
May 26th, 2010 | syntax:
XML | size: 2.06 KB | hits: 159 | expires: Never
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util='http://schemas.microsoft.com/wix/UtilExtension'>
<Product Id="06918e16-ff85-4888-b17a-333c8198203b" Name="wixDTFTest" Language="1033" Version="1.0.0.0" Manufacturer="wixDTFTest" UpgradeCode="59f38181-4ba0-4d6c-a8d8-d8c257605566">
<Package InstallerVersion="200" Compressed="yes" />
<CustomAction Id="CreateFolderStructureFunc" BinaryKey="folderkey" DllEntry="CreateFolderStructure" Execute="immediate" Return="check" />
<Binary Id="folderkey" SourceFile="C:\Users\theuser\Documents\Visual Studio 2008\Projects\WixTest\wixDTFTest\FolderStructure\bin\Debug\FolderStructure.CA.dll" />
<InstallExecuteSequence>
<!--<Custom Action="SetCustomActionDataValue" Before="InstallFinalize" />-->
<Custom Action="CreateFolderStructureFunc" After="CostFinalize" Overridable="yes">NOT Installed</Custom>
<!--<Custom Action="DebugAction" OnExit="cancel">1</Custom>-->
</InstallExecuteSequence>
<Media Id="1" Cabinet="media1.cab" EmbedCab="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLLOCATION" Name="wixDTFTest">
<!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
<Component Id="ProductComponent" Guid="e198e5c5-f96e-422d-9423-acf1d73293d7">
<!-- TODO: Insert files, registry keys, and other resources here. -->
<File Id="WindowsInstallerTest.exe" Source="c:\Users\thsuser\Documents\Visual Studio 2008\Projects\WixTest\wixDTFTest\WindowsInstallerTest\bin\Debug\WindowsInstallerTest.exe" />
</Component>
</Directory>
</Directory>
</Directory>
<Feature Id="ProductFeature" Title="wixDTFTest" Level="1">
<!-- TODO: Remove the comments around this ComponentRef element and the Component above in order to add resources to this installer. -->
<ComponentRef Id="ProductComponent" />
</Feature>
</Product>
</Wix>