Bugs item #1529711, was opened at 2006-07-27 07:02
Message generated for change (Settings changed) made by robmen
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: Justin Rockwood (justinrockwood)
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

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to