Ara;

Are you looking for -dr (or <DirectoryRefId> ) which can be any DirectoryRef
(Property) defined in your MSI.  (Run heat.exe -? for more details.)

<Directory Id="TARGETDIR" Name="SourceDir">
    <Directory Id="ProgramFilesFolder">
        <Directory Id="APPLICATIONROOTDIRECTORY" Name="My Application
Name"/>
    </Directory>
</Directory>

You could use -dr APPLICATIONROOTDIRECTORY to install the files under that
location on the target system.

Personally I avoid using VS solution properties, primarily because I
configure my projects to build using either VS or MSBuild scripts (and I
would rather control the build order in my build scripts).  There are too
many situations where VS or MSBuild tries to rebuild projects which do not
need to be rebuilt, or it tries to build projects with the incorrect
platform (in a mixed platform build sequence).  I do not know about the SSIS
project, but did you in the Wix project (not the solution) add a Reference
to the other project (or output file)?  I could not tell from the comment.

Check out my last post to  this
<http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Automatically-harvest-files-in-VS-2013-td7597592.html#a7597597>
  
thread, for info on using HarvestDirectory which works much better than
trying to integrate heat.exe into a build cycle.  Harvesting files has
risks, so test your results carefully.


 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/using-custom-variables-on-heat-command-line-tp7599633p7599640.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to