There's a collection of tips and links here for building 64/32 bit setups: http://blogs.msdn.com/b/astebner/archive/2007/08/09/4317654.aspx
However you need to figure out why your app is failing, and we can't debug that with WiX source. Typical issues are missing 64-bit dependencies; .NET AnyCpu code that runs native on x64 and fails to find COM and other registry info that is in the X86 registry and attempts to link to other Dlls with the wrong bitness. --------------- Phil Wilson On Wed, Mar 19, 2014 at 9:57 AM, karthikrangaraj <kranga...@dnpphoto.eu> wrote: > Hi Guys, i need some help. When I created a installer for 64bit OS, the > application is not launching. Even i made a 64 bit installer, same iisue. > > App working fine on 32 bit os. Thank you > > > This is the product.wix file: > <?xml version="1.0"?> > <?define ProductVersion = "1.0.0.0"?> > <?define ProductUpgradeCode = "9fe100b5-8486-46c4-b3ab-15da1931ba4d"?> > <?define SourceDir = "C:\Users\krangaraj\Documents\Visual Studio > 2012\Projects\PartyPrintUtility\PartyPrintUtility\bin\x64\Release" ?> > <?define SourceDirImages = "C:\Users\krangaraj\Documents\Visual Studio > 2012\Projects\PartyPrintUtility\PartyPrintUtility\bin\x64\Release\Res" ?> > > <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> > <Product Id="*" UpgradeCode="$(var.ProductUpgradeCode)" > Name="PartyPrint Utility" Version="$(var.ProductVersion)" > Language="1033" > > <Package InstallerVersion="200" Compressed="yes" Comments="Windows > Installer Package" InstallScope="perMachine"/> > <Media Id="1" Cabinet="PartyPrintUtility.cab" EmbedCab="yes"/> > > <Upgrade Id="$(var.ProductUpgradeCode)"> > <UpgradeVersion Minimum="$(var.ProductVersion)" OnlyDetect="yes" > Property="NEWERVERSIONDETECTED"/> > <UpgradeVersion Minimum="0.0.0" Maximum="$(var.ProductVersion)" > IncludeMinimum="yes" IncludeMaximum="no" > Property="OLDERVERSIONBEINGUPGRADED"/> > </Upgrade> > <Condition Message="A newer version of this software is already > installed.">NOT NEWERVERSIONDETECTED</Condition> > > <Directory Id="TARGETDIR" Name="SourceDir"> > <Directory Id="ProgramFilesFolder"> > <Directory Id="INSTALLDIR" Name="PartyPrint Utility"> > > > <Component Id="PartyPrintUtility" > Guid="{47D7C69E-81C2-4FD6-B77B-790FBF5F7B39}"> > <File Id="PartyPrintUtility.exe" > Source="$(var.SourceDir)\PartyPrintUtility.exe" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="bGround.png" > Guid="{64AE1DAD-2502-4171-AF80-A153D59D8996}"> > <File Id="bGround.png" Source="$(var.SourceDir)\bGround.png" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="cspstat.dll" > Guid="{69CAD367-A9D1-46E7-B8BA-CF839D034175}"> > <File Id="cspstat.dll" Source="$(var.SourceDir)\cspstat.dll" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="DNP.I18N.dll" > Guid="{B20D2708-0422-4617-815F-C9143A75833F}"> > <File Id="DNP.I18N.dll" Source="$(var.SourceDir)\DNP.I18N.dll" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="DnpDongleManage.dll" > Guid="{B4A38CE6-C34E-4391-9DCA-A142DB3BCA66}"> > <File Id="DnpDongleManage.dll" > Source="$(var.SourceDir)\DnpDongleManage.dll" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="HtmlAgilityPack.dll" > Guid="{D63578BD-902A-4899-A0BF-C82146117B03}"> > <File Id="HtmlAgilityPack.dll" > Source="$(var.SourceDir)\HtmlAgilityPack.dll" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="HtmlAgilityPack.pdb" > Guid="{8CD7A15D-C92E-4F41-A097-8A06CFB01774}"> > <File Id="HtmlAgilityPack.pdb" > Source="$(var.SourceDir)\HtmlAgilityPack.pdb" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="HtmlAgilityPack.xml" > Guid="{95B2ABCB-3E8C-4824-850C-7C3D29FB814D}"> > <File Id="HtmlAgilityPack.xml" > Source="$(var.SourceDir)\HtmlAgilityPack.xml" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="KGDLLV10.dll" > Guid="{AB144098-3E3E-42AD-94A4-ED8F40E93915}"> > <File Id="KGDLLV10.dll" Source="$(var.SourceDir)\KGDLLV10.dll" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="Microsoft.Expression.Interactions.dll" > Guid="{1EEF5A4C-B0AF-4528-8F57-80A8A62743EB}"> > <File Id="Microsoft.Expression.Interactions.dll" > Source="$(var.SourceDir)\Microsoft.Expression.Interactions.dll" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="Microsoft.Expression.Interactions.xml" > Guid="{8D772282-693B-4B4F-8D50-BC0A74F694E1}"> > <File Id="Microsoft.Expression.Interactions.xml" > Source="$(var.SourceDir)\Microsoft.Expression.Interactions.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="PartyPrint.Design.dll" > Guid="{B9E0FD72-35B1-4FC4-B91F-F8B108F700D6}"> > <File Id="PartyPrint.Design.dll" > Source="$(var.SourceDir)\PartyPrint.Design.dll" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="PartyPrint.Design.pdb" > Guid="{B72BA6A5-F4AE-4B40-B1C2-85CB1487F49B}"> > <File Id="PartyPrint.Design.pdb" > Source="$(var.SourceDir)\PartyPrint.Design.pdb" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="PartyPrintUtility.exe.config" > Guid="{640907F7-7509-495C-A663-AB9AACE0C401}"> > <File Id="PartyPrintUtility.exe.config" > Source="$(var.SourceDir)\PartyPrintUtility.exe.config" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="PartyPrintUtility.pdb" > Guid="{A1ABC7F0-B969-470F-9F97-E0647FD01E7E}"> > <File Id="PartyPrintUtility.pdb" > Source="$(var.SourceDir)\PartyPrintUtility.pdb" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="PartyPrintUtility.vshost.exe" > Guid="{C2A633FE-8045-4B77-88B8-7BABE2B8659D}"> > <File Id="PartyPrintUtility.vshost.exe" > Source="$(var.SourceDir)\PartyPrintUtility.vshost.exe" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="PartyPrintUtility.vshost.exe.config" > Guid="{68806A78-9809-413A-A0BE-C911C601CEB2}"> > <File Id="PartyPrintUtility.vshost.exe.config" > Source="$(var.SourceDir)\PartyPrintUtility.vshost.exe.config" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="PartyPrintUtility.vshost.exe.manifest" > Guid="{17BA04C5-BB05-4F35-A510-723C98C3CE05}"> > <File Id="PartyPrintUtility.vshost.exe.manifest" > Source="$(var.SourceDir)\PartyPrintUtility.vshost.exe.manifest" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="Penguins.jpg" > Guid="{A8A2063C-55AD-46B1-A46D-D235A62D654B}"> > <File Id="Penguins.jpg" Source="$(var.SourceDir)\Penguins.jpg" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="System.Windows.Interactivity.dll" > Guid="{7E4BDADB-1B87-4294-91BF-5343F77D0954}"> > <File Id="System.Windows.Interactivity.dll" > Source="$(var.SourceDir)\System.Windows.Interactivity.dll" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="System.Windows.Interactivity.xml" > Guid="{A197BE9A-42CD-4DFF-A6BC-37D4066FAA77}"> > <File Id="System.Windows.Interactivity.xml" > Source="$(var.SourceDir)\System.Windows.Interactivity.xml" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="Vertical.jpg" > Guid="{DF1B375B-4C35-4237-9C94-B00CA32EE479}"> > <File Id="Vertical.jpg" Source="$(var.SourceDir)\Vertical.jpg" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="WPFSpark.dll" > Guid="{823604C4-23D9-4BD1-9478-28869770D522}"> > <File Id="WPFSpark.dll" Source="$(var.SourceDir)\WPFSpark.dll" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="WPFSpark.pdb" > Guid="{77B2B1CA-CE29-4489-86EE-FD0A6E788E48}"> > <File Id="WPFSpark.pdb" Source="$(var.SourceDir)\WPFSpark.pdb" > KeyPath="yes" Checksum="yes"/> > </Component> > > <Directory Id="Res" Name="Res"> > <Component Id="Res" > Guid="{9D09BB7C-80C9-4DEB-AC84-54F59F518A61}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18n.de.txt" > Guid="{F814BFE0-3832-472B-9B5B-45B43560FFE4}"> > <File Id="i18n.de.txt" > Source="$(var.SourceDirImages)\i18n.de.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.en.txt" > Guid="{CD681BE6-604A-4209-8B60-77E9AE1BE51F}"> > <File Id="i18n.en.txt" > Source="$(var.SourceDirImages)\i18n.en.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.es.txt" > Guid="{D88E1BF5-BE51-452E-9172-439925D1665A}"> > <File Id="i18n.es.txt" > Source="$(var.SourceDirImages)\i18n.es.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.fr.txt" > Guid="{62D9F80B-712F-4B04-A4AA-A1AD2B971983}"> > <File Id="i18n.fr.txt" > Source="$(var.SourceDirImages)\i18n.fr.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.it.txt" > Guid="{71FC01BE-8D78-4665-92D7-768D7F8DF601}"> > <File Id="i18n.it.txt" > Source="$(var.SourceDirImages)\i18n.it.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.pl.txt" > Guid="{CD7C6A2C-9598-4E2C-9EB1-52DA30BD573D}"> > <File Id="i18n.pl.txt" > Source="$(var.SourceDirImages)\i18n.pl.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.ru.txt" > Guid="{B6B69CE4-AC43-435A-9EDF-1DC858D9E1A0}"> > <File Id="i18n.ru.txt" > Source="$(var.SourceDirImages)\i18n.ru.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.tr.txt" > Guid="{42165C17-CC47-4082-B0B7-AFDA0F92E844}"> > <File Id="i18n.tr.txt" > Source="$(var.SourceDirImages)\i18n.tr.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.txt" > Guid="{2DA74F9C-589F-4F2A-8ACB-A8413E91692A}"> > <File Id="i18n.txt" Source="$(var.SourceDirImages)\i18n.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18n.el.txt" > Guid="{11360BD3-01F7-454E-BE47-907D5065E2A6}"> > <File Id="i18n.el.txt" > Source="$(var.SourceDirImages)\i18n.el.txt" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="supported_langs.xml" > Guid="{96EAD37E-26EA-4F82-B833-550493778493}"> > <File Id="supported_langs.xml" > Source="$(var.SourceDirImages)\supported_langs.xml" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="Test456.png" > Guid="{97915229-DDBE-4E4D-80A8-5CF70ACF3DD6}"> > <File Id="Test456.png" Source="$(var.SourceDir)\Test456.png" > KeyPath="yes" Checksum="yes"/> > </Component> > > > > <Directory Id="English" Name="English"> > <Component Id="English" > Guid="{1F1D3850-BD8D-43AA-AC27-EDC898EA565E}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintEn" Name="HotFolderPrint"> > <Component Id="HotFolderPrintEng" > Guid="{ED68396C-62F2-4CBA-86DB-4FBBF63B212A}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nEngTxt" > Guid="{2756ECE5-841A-49A8-9D4C-BC2A51268BFB}"> > <File Id="i18nEngTxt" > Source="$(var.SourceDirImages)\English\HotFolderPrint\i18n.en.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nDevEngTxt" > Guid="{C29521E4-18D9-4D24-9CDF-1F6052EF6F70}"> > <File Id="i18nDevEngTxt" > Source="$(var.SourceDirImages)\English\HotFolderPrint\i18nDeviceStatus.en.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nMedEngTxt" > Guid="{B9EDDA12-7692-467F-A53A-4A41289351D5}"> > <File Id="i18nMedEngTxt" > Source="$(var.SourceDirImages)\English\HotFolderPrint\i18nMediaTypes.en.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nEngXml" > Guid="{A09145BD-1AC1-45C0-96FD-A1472F2C05B6}"> > <File Id="i18nEngXml" > Source="$(var.SourceDirImages)\English\HotFolderPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintEn" Name="PartyPrint"> > <Component Id="PartyPrintEng" > Guid="{25C568EC-893A-4951-811B-D103C6053D77}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nPPEngTxt" > Guid="{F0DB15F6-CE3F-43BC-ADCC-DD43A3B88685}"> > <File Id="i18nPPEngTxt" > Source="$(var.SourceDirImages)\English\PartyPrint\i18n.en.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="i18nPPEngXml" > Guid="{2FAB1E98-1192-4103-9979-C0DE971CA0A1}"> > <File Id="i18nPPEngXml" > Source="$(var.SourceDirImages)\English\PartyPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > </Directory> > > <Component Id="Help.pngEng" > Guid="{85C62E88-FC2D-4DB7-A106-66DBCAFAB96A}"> > <File Id="Help.pngEng" > Source="$(var.SourceDirImages)\English\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > </Directory> > > > <Directory Id="French" Name="French"> > <Component Id="French" > Guid="{22B30ED1-5808-4410-BC98-104D46B64065}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintFr" Name="HotFolderPrint"> > <Component Id="HotFolderPrintFr" > Guid="{3744F58E-7909-4F9A-A459-CF9F37ECCDF2}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nFreTxt" > Guid="{F87F475B-54A6-472D-BFA1-568C1281414D}"> > <File Id="i18nFreTxt" > Source="$(var.SourceDirImages)\French\HotFolderPrint\i18n.fr.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nFreDevTxt" > Guid="{66255CDD-73D5-40B2-865F-AE172FF7A16E}"> > <File Id="i18nFreDevTxt" > Source="$(var.SourceDirImages)\French\HotFolderPrint\i18nDeviceStatus.fr.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nFreMedTxt" > Guid="{7B77D278-2DEC-4F4D-8C41-4ACAF723B6E1}"> > <File Id="i18nFreMedTxt" > Source="$(var.SourceDirImages)\French\HotFolderPrint\i18nMediaTypes.fr.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nFreXml" > Guid="{2F4E64D3-EFF6-4A9C-9FA7-DAFC14428121}"> > <File Id="i18nFreXml" > Source="$(var.SourceDirImages)\French\HotFolderPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintFr" Name="PartyPrint"> > <Component Id="PartyPrintFr" > Guid="{045912E8-7DE1-4E07-B044-1864667F2A9E}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nPPFreTxt" > Guid="{6B864605-7191-4064-8FC2-C22C6BAFD7EC}"> > <File Id="i18nPPFreTxt" > Source="$(var.SourceDirImages)\French\PartyPrint\i18n.fr.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="i18nPPFreXml" > Guid="{AE480C45-BA95-4E8C-8DF9-52BE4DB0EFF1}"> > <File Id="i18nPPFreXml" > Source="$(var.SourceDirImages)\French\PartyPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Component Id="Help.pngFr" > Guid="{C7378EC8-B9D5-41A5-867D-894A449CCE64}"> > <File Id="Help.pngFr" > Source="$(var.SourceDirImages)\French\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > > </Directory> > > > <Directory Id="German" Name="German"> > <Component Id="German" > Guid="{0B931607-06DB-4FB9-AAD7-5936C48FC715}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintGe" Name="HotFolderPrint"> > <Component Id="HotFolderPrintGe" > Guid="{CF6CCAB9-361B-48AD-81E7-DFD6E8F5C4F6}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nGerTxt" > Guid="{1D83C7F4-3E65-458C-B52F-D85A4FEE914F}"> > <File Id="i18nGerTxt" > Source="$(var.SourceDirImages)\German\HotFolderPrint\i18n.de.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nGerDevTxt" > Guid="{02D039CC-67C8-4FAC-B16A-CFF028D8DF67}"> > <File Id="i18nGerDevTxt" > Source="$(var.SourceDirImages)\German\HotFolderPrint\i18nDeviceStatus.de.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nGerMedTxt" > Guid="{2830F92C-62F6-446C-9F0D-677E899DE15A}"> > <File Id="i18nGerMedTxt" > Source="$(var.SourceDirImages)\German\HotFolderPrint\i18nMediaTypes.de.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nGerXml" > Guid="{69A384B9-3FE1-4900-B65E-820396CF2534}"> > <File Id="i18nGerXml" > Source="$(var.SourceDirImages)\German\HotFolderPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintGe" Name="PartyPrint"> > <Component Id="PartyPrintGe" > Guid="{1B117174-42AC-4A28-B1F5-E98BC98FEA3A}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nPPGerTxt" > Guid="{E47FA20E-2F66-4AEA-B724-FA446113F1A3}"> > <File Id="i18nPPGerTxt" > Source="$(var.SourceDirImages)\German\PartyPrint\i18n.de.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > > > </Directory> > > <Component Id="Help.pngGe" > Guid="{9C7379F5-37B1-4FA2-9017-EBDE249A1E73}"> > <File Id="Help.pngGe" > Source="$(var.SourceDirImages)\German\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > > </Directory> > > > <Directory Id="Images" Name="Images"> > <Component Id="Images" > Guid="{BD8E4238-FCDC-4557-97AB-70A0304E9A2B}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > > <Component Id="HelpCommon" > Guid="{F85D79CE-228A-4B35-A69B-0C6415612580}"> > <File Id="HelpCommon" > Source="$(var.SourceDirImages)\Images\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > > <Component Id="PrintCommon" > Guid="{6D2AF461-AA6C-4BB1-AC1A-3072F3E5CBDB}"> > <File Id="print.png" > Source="$(var.SourceDirImages)\Images\print.png" KeyPath="yes" > Checksum="yes"/> > </Component> > > </Directory> > > > <Directory Id="Italian" Name="Italian"> > <Component Id="Italian" > Guid="{97B6774B-87D1-4D3C-828F-971E878A1A92}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintIt" Name="HotFolderPrint"> > <Component Id="HotFolderPrintIt" > Guid="{2ECBCCDD-913F-4EE9-A0AB-2811D312DFD8}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > <Component Id="i18nItaTxt" > Guid="{9BC68F5E-4533-4EB5-8268-36B831A7780B}"> > <File Id="i18nItaTxt" > Source="$(var.SourceDirImages)\Italian\HotFolderPrint\i18n.it.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nItaDevTxt" > Guid="{966B0A37-0628-42E3-9085-E15A2770F529}"> > <File Id="i18nItaDevTxt" > Source="$(var.SourceDirImages)\Italian\HotFolderPrint\i18nDeviceStatus.it.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nItaMedTxt" > Guid="{99D566FB-887D-4176-90C2-91EC0B9CC131}"> > <File Id="i18nItaMedTxt" > Source="$(var.SourceDirImages)\Italian\HotFolderPrint\i18nMediaTypes.it.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > </Directory> > > <Directory Id="PartyPrintIt" Name="PartyPrint"> > <Component Id="PartyPrintIt" > Guid="{AAE4F023-4333-40CF-9652-40808A305D3C}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > <Component Id="i18nPPItaTxt" > Guid="{2B274AA1-C211-415B-807C-609F9EDCE4E6}"> > <File Id="i18nPPItaTxt" > Source="$(var.SourceDirImages)\Italian\PartyPrint\i18n.it.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="i18nPPItaXml" > Guid="{869CD43A-B1E7-402A-BDF3-38CC0080D23F}"> > <File Id="i18nPPItaXml" > Source="$(var.SourceDirImages)\Italian\PartyPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Component Id="Help.pngIt" > Guid="{662284A2-683E-404C-AAFC-8C732D9CAB0A}"> > <File Id="Help.pngIt" > Source="$(var.SourceDirImages)\Italian\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > </Directory> > > > <Directory Id="Russian" Name="Russian"> > <Component Id="Russian" > Guid="{3341CC24-AC69-4956-869A-CAE9108D0565}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintRu" Name="HotFolderPrint"> > <Component Id="HotFolderPrintRu" > Guid="{D827780C-AD49-41D1-A3EE-B45037619DEA}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > <Component Id="i18nRusTxt" > Guid="{3DA70898-77F0-4E99-B7EC-856D7FE00A2C}"> > <File Id="i18nRusTxt" > Source="$(var.SourceDirImages)\Russian\HotFolderPrint\i18n.ru.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nRusDevTxt" > Guid="{E8A3E0E0-8162-4B25-AE27-24EE533A06F3}"> > <File Id="i18nRusDevTxt" > Source="$(var.SourceDirImages)\Russian\HotFolderPrint\i18nDeviceStatus.ru.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nRusMedTxt" > Guid="{226D6B0A-E7C7-4321-9067-ACC55D8A3EBC}"> > <File Id="i18nRusMedTxt" > Source="$(var.SourceDirImages)\Russian\HotFolderPrint\i18nMediaTypes.ru.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintRu" Name="PartyPrint"> > <Component Id="PartyPrintRu" > Guid="{3F4D0CC5-A72A-4E14-ADB5-F56B5B379625}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nPPRusTxt" > Guid="{9145D3AE-139D-4913-A4CB-5E9B6A21653B}"> > <File Id="i18nPPRusTxt" > Source="$(var.SourceDirImages)\Russian\PartyPrint\i18n.ru.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="i18nPPRusXml" > Guid="{1DD1A80F-9DD4-4D2B-B77F-6E6A05390668}"> > <File Id="i18nPPRusXml" > Source="$(var.SourceDirImages)\Russian\PartyPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Component Id="Help.pngRu" > Guid="{EA9C4B55-9F95-4495-B2DD-C24E241A9352}"> > <File Id="Help.pngRu" > Source="$(var.SourceDirImages)\Russian\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > </Directory> > > > <Directory Id="Spanish" Name="Spanish"> > <Component Id="Spanish" > Guid="{4C289E51-649D-4070-8060-7238F8D0EBC7}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintSp" Name="HotFolderPrint"> > <Component Id="HotFolderPrintSp" > Guid="{893E132E-7101-4622-86C0-7F75ED5536C6}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="i18nSpaTxt" > Guid="{1B3B5BF9-06CC-4B4F-9341-F0A857C85CBD}"> > <File Id="i18nSpaTxt" > Source="$(var.SourceDirImages)\Spanish\HotFolderPrint\i18n.es.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nSpaDevTxt" > Guid="{DD43A71F-7B6A-4B87-A0D2-9E8EA677577C}"> > <File Id="i18nSpaDevTxt" > Source="$(var.SourceDirImages)\Spanish\HotFolderPrint\i18nDeviceStatus.es.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nSpaMedTxt" > Guid="{5EFD5B6C-0DA1-417C-9BBE-32BDEB3429C6}"> > <File Id="i18nSpaMedTxt" > Source="$(var.SourceDirImages)\Spanish\HotFolderPrint\i18nMediaTypes.es.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintSp" Name="PartyPrint"> > <Component Id="PartyPrintSp" > Guid="{BC6D0609-230E-4864-BF82-4174DAEB3D82}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > <Component Id="i18nPPSpaTxt" > Guid="{E6DCA1FE-FE76-4168-8509-BD52B40605D5}"> > <File Id="i18nPPSpaTxt" > Source="$(var.SourceDirImages)\Spanish\PartyPrint\i18n.es.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="i18nPPSpaXml" > Guid="{1FC1EBA8-15A7-42D7-8C21-DD91DFED0913}"> > <File Id="i18nPPSpaXml" > Source="$(var.SourceDirImages)\Spanish\PartyPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Component Id="Help.pngSp" > Guid="{78B89E8F-D697-4C50-951E-DB45563B274D}"> > <File Id="Help.pngSp" > Source="$(var.SourceDirImages)\Spanish\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > </Directory> > > > <Directory Id="Turkish" Name="Turkish"> > <Component Id="Turkish" > Guid="{094C2AE3-AFBB-423F-9EC7-B7846AB52749}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintTr" Name="HotFolderPrint"> > <Component Id="HotFolderPrintTu" > Guid="{42BE9BC5-A3DD-45D0-BCD0-71AF9E81B456}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > <Component Id="i18nTurTxt" > Guid="{98B29587-2575-4F6D-A7CB-670491F0C1CA}"> > <File Id="i18nTurTxt" > Source="$(var.SourceDirImages)\Turkish\HotFolderPrint\i18n.tr.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nTurDevTxt" > Guid="{8904F4F9-1FDA-46A6-87A4-FCDA835F11F8}"> > <File Id="i18nTurDevTxt" > Source="$(var.SourceDirImages)\Turkish\HotFolderPrint\i18nDeviceStatus.tr.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nTurMedTxt" > Guid="{A44766D1-10A5-4997-96BD-F9F0A85BCFA2}"> > <File Id="i18nTurMedTxt" > Source="$(var.SourceDirImages)\Turkish\HotFolderPrint\i18nMediaTypes.tr.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintTr" Name="PartyPrint"> > <Component Id="PartyPrintTu" > Guid="{57432E5D-1E92-439B-9BDA-F7CF057A9898}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > > </Component> > > <Component Id="i18nPPTurTxt" > Guid="{901638FD-F7C4-4F1D-9761-FEB08B7D4E52}"> > <File Id="i18nPPTurTxt" > Source="$(var.SourceDirImages)\Turkish\PartyPrint\i18n.tr.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="i18nPPTurXml" > Guid="{5F003C16-BFC1-436A-B1A2-D0E43EC6F0B1}"> > <File Id="i18nPPTurXml" > Source="$(var.SourceDirImages)\Turkish\PartyPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > </Directory> > > <Component Id="Help.pngTu" > Guid="{F06A8AB0-3006-47E6-864B-E9773E17A9B5}"> > <File Id="Help.pngTu" > Source="$(var.SourceDirImages)\Turkish\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > </Directory> > > > <Directory Id="Greek" Name="Greek"> > <Component Id="Greek" > Guid="{63F79EA4-AC08-46DB-B93A-CB7CE4A87C87}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="HotFolderPrintGre" Name="HotFolderPrint"> > <Component Id="HotFolderPrintGre" > Guid="{F39BD76C-F371-4680-BEDE-6E2483EA80DB}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > <Component Id="i18nelTxt" > Guid="{3E0F8E5C-71E6-48D4-BC2D-D92835C754C8}"> > <File Id="i18nelTxt" > Source="$(var.SourceDirImages)\Greek\HotFolderPrint\i18n.el.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nelDevTxt" > Guid="{C186248A-A2F5-401B-BBCB-D2595C8F61D6}"> > <File Id="i18nelDevTxt" > Source="$(var.SourceDirImages)\Greek\HotFolderPrint\i18nDeviceStatus.el.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="i18nelMedTxt" > Guid="{BEC616DA-4DD8-4D27-A888-43859E184DF1}"> > <File Id="i18nelMedTxt" > Source="$(var.SourceDirImages)\Greek\HotFolderPrint\i18nMediaTypes.el.txt" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintGre" Name="PartyPrint"> > <Component Id="PartyPrintGre" > Guid="{3FFD6889-398D-49A4-A71B-879561C71931}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > > </Component> > > <Component Id="i18nPPGreTxt" > Guid="{DACEF1C6-48F1-40CF-9260-3E061DE9D47B}"> > <File Id="i18nPPGreTxt" > Source="$(var.SourceDirImages)\Greek\PartyPrint\i18n.el.txt" KeyPath="yes" > Checksum="yes"/> > </Component> > <Component Id="i18nPPGrXml" > Guid="{1A6FA5D1-3194-4E0D-A167-F962B7D2FF3D}"> > <File Id="i18nPPGrXml" > Source="$(var.SourceDirImages)\Greek\PartyPrint\supported_langs.xml" > KeyPath="yes" Checksum="yes"/> > </Component> > </Directory> > > <Component Id="Help.pngGr" > Guid="{7F0E429E-8172-4179-B8BB-EA03C2EC0BF9}"> > <File Id="Help.pngGr" > Source="$(var.SourceDirImages)\Greek\Help.png" KeyPath="yes" > Checksum="yes"/> > </Component> > </Directory> > > </Directory> > > > > <Directory Id="HtmlFiles" Name="Html Files"> > <Component Id="HtmlFiles" > Guid="{640264D1-AADD-4CE6-B240-2BE6849D01CD}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Directory Id="Create" Name="Create"> > <Component Id="Create" > Guid="{23931B41-5527-4747-A005-E9C7C0393E16}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > </Directory> > <Directory Id="Template" Name="Template"> > <Component Id="TemplateFolder" > Guid="{D92E7B8F-66F9-419E-BC8B-B35A509C4E39}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="TeampletXML" > Guid="{BB34D425-B1DF-45CE-925E-76AF3E6092F3}"> > <File Id="TeampletXML" Source="$(var.SourceDir)\Html > Files\Template\LinesTemplate.xml" KeyPath="yes" Checksum="yes"/> > </Component> > > <Component Id="TeamplateImage" > Guid="{82A6F174-C9DF-4726-9C93-66B8027044B4}"> > <File Id="TeamplateImage" Source="$(var.SourceDir)\Html > Files\Template\Test456.png" KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > <Directory Id="Examples2" Name="Examples2"> > <Component Id="Examples2" > Guid="{DC3702DC-69ED-4D5F-BC56-318AFFD4467C}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > <Component Id="Christmas1.png" > Guid="{B72541CD-02A9-4D7D-B23D-0452E630CBCD}"> > <File Id="Christmas1.png" Source="$(var.SourceDir)\Html > Files\Examples2\Christmas1.png" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="dnp.png" > Guid="{6397471A-05C0-4725-88EC-BAA133A571BB}"> > <File Id="dnp.png" Source="$(var.SourceDir)\Html > Files\Examples2\dnp.png" KeyPath="yes" Checksum="yes"/> > </Component> > > <Component Id="Example1.html" > Guid="{832BCC10-3384-49FF-83DA-D8165AF08D88}"> > <File Id="Example1.html" Source="$(var.SourceDir)\Html > Files\Examples2\Example1.html" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="Example2.html" > Guid="{502D01FD-04E5-4153-B2F4-26A920A0FEF0}"> > <File Id="Example2.html" Source="$(var.SourceDir)\Html > Files\Examples2\Example2.html" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="Example3.html" > Guid="{E3A2F954-50AA-4963-8582-1881C30DE00C}"> > <File Id="Example3.html" Source="$(var.SourceDir)\Html > Files\Examples2\Example3.html" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="SantClaus.png" > Guid="{A8B68816-60FA-4B18-8AD3-80665426C625}"> > <File Id="SantClaus.png" Source="$(var.SourceDir)\Html > Files\Examples2\SantClaus.png" KeyPath="yes" Checksum="yes"/> > </Component> > <Component Id="welcome_final1toChange.png" > Guid="{D48E4523-05A5-4C24-9F71-945A76C70DF1}"> > <File Id="welcome_final1toChange.png" > Source="$(var.SourceDir)\Html Files\Examples2\welcome_final1 - toChange.png" > KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > <Directory Id="PartyPrintFolder" Name="Party Print"> > <Component Id="PartyPrintFolder" > Guid="{5BE12D53-9171-4209-978B-ED8062E9250F}" > SharedDllRefCount="no" KeyPath="no" NeverOverwrite="no" > Permanent="no" Transitive="no" > Location="either"> > <CreateFolder/> > </Component> > > <Component Id="PPHtmlFile" > Guid="{ADE34104-3CAE-40CF-AB9F-02E9A6777061}"> > <File Id="PPHtmlFile" Source="$(var.SourceDir)\Html > Files\Party Print\Startup.html" KeyPath="yes" Checksum="yes"/> > </Component> > > <Component Id="PPHtmlFileImage" > Guid="{8BD442D1-3D26-4EA7-80EA-B9610E49F8D7}"> > <File Id="PPHtmlFileImage" Source="$(var.SourceDir)\Html > Files\Party Print\welcome_final1.png" KeyPath="yes" Checksum="yes"/> > </Component> > > </Directory> > > > </Directory> > > </Directory> > </Directory> > > <Directory Id="ProgramMenuFolder"> > <Directory Id="ProgramMenuSubfolder" Name="PartyPrint Utility"> > <Component Id="ApplicationShortcuts" > Guid="12345678-1234-1234-1234-333333333333"> > <Shortcut Id="ApplicationShortcut1" Name="PartyPrint Utility" > Description="PartyPrint Utility" > Target="[INSTALLDIR]PartyPrintUtility.exe" > WorkingDirectory="INSTALLDIR"/> > > <RegistryValue Root="HKCU" Key="Software\DNP > PIE\PartyPrintUtility" > Name="installed" Type="integer" Value="1" > KeyPath="yes"/> > <RemoveFolder Id="ProgramMenuSubfolder" On="uninstall"/> > </Component> > > </Directory> > </Directory> > > <Directory Id="DesktopFolder" Name="Desktop"> > <Component Id="ApplicationShortcutDesktop" > Guid="{C80E4373-F31A-4A2E-90A5-F3E2EFD149AA}"> > <Shortcut Id="ApplicationDesktopShortcut" > Name="PartyPrint Utility" > Description="PartyPrint Utility" > Target="[INSTALLDIR]PartyPrintUtility.exe" > WorkingDirectory="INSTALLDIR"/> > <RemoveFolder Id="DesktopFolder" On="uninstall"/> > <RegistryValue > Root="HKCU" > Key="Software/MyAppName" > Name="installed" > Type="integer" > Value="1" > KeyPath="yes"/> > </Component> > </Directory> > > > </Directory> > > > <InstallExecuteSequence> > <RemoveExistingProducts After="InstallValidate"/> > > </InstallExecuteSequence> > > <Feature Id="DefaultFeature" Level="1"> > <ComponentRef Id="PartyPrintUtility"/> > <ComponentRef Id="bGround.png"/> > <ComponentRef Id="cspstat.dll"/> > <ComponentRef Id="DNP.I18N.dll"/> > <ComponentRef Id="DnpDongleManage.dll"/> > <ComponentRef Id="HtmlAgilityPack.dll"/> > <ComponentRef Id="HtmlAgilityPack.pdb"/> > <ComponentRef Id="HtmlAgilityPack.xml"/> > <ComponentRef Id="KGDLLV10.dll"/> > <ComponentRef Id="Microsoft.Expression.Interactions.dll"/> > <ComponentRef Id="Microsoft.Expression.Interactions.xml"/> > <ComponentRef Id="PartyPrint.Design.dll"/> > <ComponentRef Id="PartyPrint.Design.pdb"/> > <ComponentRef Id="PartyPrintUtility.pdb"/> > <ComponentRef Id="PartyPrintUtility.exe.config"/> > <ComponentRef Id="PartyPrintUtility.vshost.exe"/> > <ComponentRef Id="PartyPrintUtility.vshost.exe.manifest"/> > <ComponentRef Id="PartyPrintUtility.vshost.exe.config"/> > <ComponentRef Id="Penguins.jpg"/> > <ComponentRef Id="System.Windows.Interactivity.dll"/> > <ComponentRef Id="System.Windows.Interactivity.xml"/> > <ComponentRef Id="Vertical.jpg"/> > <ComponentRef Id="WPFSpark.dll"/> > <ComponentRef Id="WPFSpark.pdb"/> > <ComponentRef Id="Test456.png"/> > <ComponentRef Id="Res"/> > <ComponentRef Id="i18n.de.txt"/> > <ComponentRef Id="i18n.en.txt"/> > <ComponentRef Id="i18n.es.txt"/> > <ComponentRef Id="i18n.fr.txt"/> > <ComponentRef Id="i18n.it.txt"/> > <ComponentRef Id="i18n.pl.txt"/> > <ComponentRef Id="i18n.ru.txt"/> > <ComponentRef Id="i18n.tr.txt"/> > <ComponentRef Id="i18n.txt"/> > <ComponentRef Id="i18n.el.txt"/> > <ComponentRef Id="supported_langs.xml"/> > > <ComponentRef Id="HtmlFiles"/> > <ComponentRef Id="Create"/> > <ComponentRef Id="Examples2"/> > <ComponentRef Id="PartyPrintFolder"/> > <ComponentRef Id="Christmas1.png"/> > <ComponentRef Id="dnp.png"/> > <ComponentRef Id="Example1.html"/> > <ComponentRef Id="Example2.html"/> > <ComponentRef Id="Example3.html"/> > <ComponentRef Id="SantClaus.png"/> > <ComponentRef Id="welcome_final1toChange.png"/> > <ComponentRef Id="PPHtmlFile"/> > <ComponentRef Id="PPHtmlFileImage"/> > <ComponentRef Id="TemplateFolder"/> > <ComponentRef Id="TeampletXML"/> > <ComponentRef Id="TeamplateImage"/> > > <ComponentRef Id="English"/> > <ComponentRef Id="HotFolderPrintEng"/> > <ComponentRef Id="i18nEngTxt"/> > <ComponentRef Id="i18nDevEngTxt"/> > <ComponentRef Id="i18nMedEngTxt"/> > <ComponentRef Id="i18nEngXml"/> > <ComponentRef Id="PartyPrintEng"/> > <ComponentRef Id="i18nPPEngTxt"/> > <ComponentRef Id="i18nPPEngXml"/> > <ComponentRef Id="Help.pngEng"/> > > <ComponentRef Id="French"/> > <ComponentRef Id="HotFolderPrintFr"/> > <ComponentRef Id="i18nFreTxt"/> > <ComponentRef Id="i18nFreDevTxt"/> > <ComponentRef Id="i18nFreMedTxt"/> > <ComponentRef Id="i18nFreXml"/> > <ComponentRef Id="PartyPrintFr"/> > <ComponentRef Id="i18nPPFreTxt"/> > <ComponentRef Id="i18nPPFreXml"/> > <ComponentRef Id="Help.pngFr"/> > > <ComponentRef Id="German"/> > <ComponentRef Id="HotFolderPrintGe"/> > <ComponentRef Id="i18nGerTxt"/> > <ComponentRef Id="i18nGerDevTxt"/> > <ComponentRef Id="i18nGerMedTxt"/> > <ComponentRef Id="i18nGerXml"/> > <ComponentRef Id="PartyPrintGe"/> > <ComponentRef Id="i18nPPGerTxt"/> > <ComponentRef Id="Help.pngGe"/> > > <ComponentRef Id="Images"/> > <ComponentRef Id="HelpCommon"/> > <ComponentRef Id="PrintCommon"/> > > <ComponentRef Id="Italian"/> > <ComponentRef Id="HotFolderPrintIt"/> > <ComponentRef Id="i18nItaTxt"/> > <ComponentRef Id="i18nItaDevTxt"/> > <ComponentRef Id="i18nItaMedTxt"/> > <ComponentRef Id="PartyPrintIt"/> > <ComponentRef Id="i18nPPItaTxt"/> > <ComponentRef Id="i18nPPItaXml"/> > <ComponentRef Id="Help.pngIt"/> > > <ComponentRef Id="Russian"/> > <ComponentRef Id="HotFolderPrintRu"/> > <ComponentRef Id="i18nRusTxt"/> > <ComponentRef Id="i18nRusDevTxt"/> > <ComponentRef Id="i18nRusMedTxt"/> > <ComponentRef Id="PartyPrintRu"/> > <ComponentRef Id="i18nPPRusTxt"/> > <ComponentRef Id="i18nPPRusXml"/> > <ComponentRef Id="Help.pngRu"/> > > <ComponentRef Id="Spanish"/> > <ComponentRef Id="HotFolderPrintSp"/> > <ComponentRef Id="i18nSpaTxt"/> > <ComponentRef Id="i18nSpaDevTxt"/> > <ComponentRef Id="i18nSpaMedTxt"/> > <ComponentRef Id="PartyPrintSp"/> > <ComponentRef Id="i18nPPSpaTxt"/> > <ComponentRef Id="i18nPPSpaXml"/> > <ComponentRef Id="Help.pngSp"/> > > <ComponentRef Id="Turkish"/> > <ComponentRef Id="HotFolderPrintTu"/> > <ComponentRef Id="i18nTurTxt"/> > <ComponentRef Id="i18nTurDevTxt"/> > <ComponentRef Id="i18nTurMedTxt"/> > <ComponentRef Id="PartyPrintTu"/> > <ComponentRef Id="i18nPPTurTxt"/> > <ComponentRef Id="i18nPPTurXml"/> > <ComponentRef Id="Help.pngTu"/> > > > <ComponentRef Id="Greek"/> > <ComponentRef Id="HotFolderPrintGre"/> > <ComponentRef Id="i18nelTxt"/> > <ComponentRef Id="i18nelDevTxt"/> > <ComponentRef Id="i18nelMedTxt"/> > <ComponentRef Id="PartyPrintGre"/> > <ComponentRef Id="i18nPPGreTxt"/> > <ComponentRef Id="i18nPPGrXml"/> > <ComponentRef Id="Help.pngGr"/> > <ComponentRef Id="ApplicationShortcuts"/> > <ComponentRef Id="ApplicationShortcutDesktop"/> > > > </Feature> > > > </Product> > </Wix> > > > This is the project file: > > <?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)' == '' ">x86</Platform> > <ProductVersion>3.8</ProductVersion> > <ProjectGuid>f5d8db53-64db-41d7-9cf9-fb9a151fd45b</ProjectGuid> > <SchemaVersion>2.0</SchemaVersion> > <OutputName>SetupProjectInstaller</OutputName> > <OutputType>Package</OutputType> > <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND > '$(MSBuildExtensionsPath32)' != '' > ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath> > <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' > ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath> > </PropertyGroup> > <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' > "> > <OutputPath>bin\$(Configuration)\</OutputPath> > <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> > <DefineConstants>Debug</DefineConstants> > <VerboseOutput>True</VerboseOutput> > </PropertyGroup> > <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' > "> > <OutputPath>bin\$(Configuration)\</OutputPath> > <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> > </PropertyGroup> > <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' > "> > <DefineConstants>Debug</DefineConstants> > <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath> > > <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> > </PropertyGroup> > <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' > "> > <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath> > > <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> > </PropertyGroup> > <ItemGroup> > <Compile Include="Product.wxs" /> > </ItemGroup> > <ItemGroup> > <ProjectReference Include="..\Utility\.Design\.Design.csproj"> > <Name>.Design</Name> > <Project>{58a00d29-5dc5-4b9e-a18d-6fe6d1f0c1cf}</Project> > <Private>True</Private> > <DoNotHarvest>True</DoNotHarvest> > > <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> > <RefTargetDir>INSTALLFOLDER</RefTargetDir> > </ProjectReference> > <ProjectReference Include="..\Utility\Utility.csproj"> > <Name>Utility</Name> > <Project>{7316ff68-d2ba-4b9a-8d92-15e93ac7bc4e}</Project> > <Private>True</Private> > <DoNotHarvest>True</DoNotHarvest> > > <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> > <RefTargetDir>INSTALLFOLDER</RefTargetDir> > </ProjectReference> > <ProjectReference Include="..\Utility\WPFSpark\WPFSpark.csproj"> > <Name>WPFSpark</Name> > <Project>{98be1309-ceb4-45ee-b4ad-28baf0570fab}</Project> > <Private>True</Private> > <DoNotHarvest>True</DoNotHarvest> > > <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> > <RefTargetDir>INSTALLFOLDER</RefTargetDir> > </ProjectReference> > </ItemGroup> > <Import Project="$(WixTargetsPath)" /> > > </Project> > > > > > ----- > Wix 3.8 users > -- > View this message in context: > http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Making-64-bit-installer-from-32bit-wix-file-tp7593557.html > Sent from the wix-users mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > Learn Graph Databases - Download FREE O'Reilly Book > "Graph Databases" is the definitive new guide to graph databases and their > applications. Written by three acclaimed leaders in the field, > this first edition is now available. Download your free book today! > http://p.sf.net/sfu/13534_NeoTech > _______________________________________________ > WiX-users mailing list > WiX-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users