Hey,

It has to do with the MSbuild configuration that is being used in the WiX
project.  Go to the "WixBuild.Common.targets" file in the root directory of
your Wix Source  and add

<PropertyGroup>
<WIX_ROOT Condition="'$(WIX_ROOT)' == ''">D:\Other\wix3.5</WIX_ROOT>
  </PropertyGroup>

at about line 35 (just after the CheckRequiredProperties comments), that
should resolve the broken assemblies problem you're having.  It creates the
property (WIX_ROOT) that VS needs to fully evaluate the paths to
referenced assemblies if it's not set via a command line (like when you run
make.bat).

Stryder
------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
WiX-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to