Advertisement
Guest User

product.wxs

a guest
May 26th, 2010
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util='http://schemas.microsoft.com/wix/UtilExtension'>
  3.  
  4.   <Product Id="06918e16-ff85-4888-b17a-333c8198203b" Name="wixDTFTest" Language="1033" Version="1.0.0.0" Manufacturer="wixDTFTest" UpgradeCode="59f38181-4ba0-4d6c-a8d8-d8c257605566">
  5.         <Package InstallerVersion="200" Compressed="yes" />
  6.  
  7.     <CustomAction Id="CreateFolderStructureFunc" BinaryKey="folderkey" DllEntry="CreateFolderStructure" Execute="immediate" Return="check" />
  8.     <Binary Id="folderkey" SourceFile="C:\Users\theuser\Documents\Visual Studio 2008\Projects\WixTest\wixDTFTest\FolderStructure\bin\Debug\FolderStructure.CA.dll" />
  9.     <InstallExecuteSequence>
  10.       <!--<Custom Action="SetCustomActionDataValue"  Before="InstallFinalize" />-->
  11.       <Custom Action="CreateFolderStructureFunc"  After="CostFinalize" Overridable="yes">NOT Installed</Custom>
  12.       <!--<Custom Action="DebugAction" OnExit="cancel">1</Custom>-->
  13.     </InstallExecuteSequence>
  14.  
  15.     <Media Id="1" Cabinet="media1.cab" EmbedCab="yes" />
  16.  
  17.         <Directory Id="TARGETDIR" Name="SourceDir">
  18.             <Directory Id="ProgramFilesFolder">
  19.                 <Directory Id="INSTALLLOCATION" Name="wixDTFTest">
  20.                     <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
  21.           <Component Id="ProductComponent" Guid="e198e5c5-f96e-422d-9423-acf1d73293d7">
  22.             <!-- TODO: Insert files, registry keys, and other resources here. -->
  23.             <File Id="WindowsInstallerTest.exe" Source="c:\Users\thsuser\Documents\Visual Studio 2008\Projects\WixTest\wixDTFTest\WindowsInstallerTest\bin\Debug\WindowsInstallerTest.exe" />
  24.           </Component>
  25.                 </Directory>
  26.             </Directory>
  27.         </Directory>
  28.  
  29.         <Feature Id="ProductFeature" Title="wixDTFTest" Level="1">
  30.             <!-- TODO: Remove the comments around this ComponentRef element and the Component above in order to add resources to this installer. -->
  31.             <ComponentRef Id="ProductComponent" />
  32.  
  33.        
  34.         </Feature>
  35.     </Product>
  36. </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement