Bugs item #1529711, was opened at 2006-07-27 16:02
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1529711&group_id=105970

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: build process
Group: v2.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Christian (chmarroc)
Assigned to: Nobody/Anonymous (nobody)
Summary: no incremental builds using wix.targets

Initial Comment:
If the wix.targets file is not installed at
$(MSBuildBinPath), all targets will always execute
their tasks.

Cause: 
1. The targets include as Input the files defined in
the MSBuildAllProjects property.
2. The wix.targets project appends to the above
mentioned property this file:
$(MSBuildBinPath)\Wix.targets
3. The user is free not to copy the wix.targets file to
the .NET Framework directory

Suggestion:
Place a guard at the property definition like so:
    <PropertyGroup>
       <MSBuildAllProjects
Condition="Exists('$(MSBuildBinPath)\Wix.targets')">
$(MSBuildAllProjects);$(MSBuildBinPath)\Wix.targets
</MSBuildAllProjects>
    </PropertyGroup>


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1529711&group_id=105970

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to