Hello. As part of my bundle I have to deploy a SharePoint webpart and I use
the tool most people use for this and tool comes with a Setup.exe, an XML
file describing the installation and the WSP file to be deployed. I have
the following in my Bundle.wxs file:

<PackageGroup Id="DeployWebConsole">
<ExePackage Id="DeployWebConsole"
                          Cache="no" Compressed="no"
                          DisplayName="DeployWebConsole" PerMachine="yes"
                          Permanent="yes"
                          Vital="yes"
                          SourceFile="Binaries\StealthConsole\Setup.exe"
                          InstallCondition="InstallConsole=1" >
<PayloadGroupRef Id="StealthWebparts"/>
</ExePackage>
</PackageGroup>

With a Fragment describing the payload:

<Fragment>
<PayloadGroup Id="StealthWebparts">
<Payload SourceFile="Binaries\StealthConsole\StealthWebparts.wsp"/>
<Payload SourceFile="Binaries\StealthConsole\Setup.exe.config"/>
<Payload SourceFile="Binaries\StealthConsole\EULA.rtf"/>
</PayloadGroup>
</Fragment>

The Setup.exe finds the config file without problem but cannot find the WSP
file. Normally when all three are in the same directory the install works
fine. Any idea what could be going on?

Thanks!
-- 
http://monochrome.me.uk/blog/
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to