Bugs item #1513538, was opened at 2006-06-27 14:10 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=1513538&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: None Group: v2.0 Status: Open Resolution: None Priority: 5 Submitted By: Oleg Sych (osych) Assigned to: Nobody/Anonymous (nobody) Summary: wix.targets overrides $(OutDir) Initial Comment: wix.targets (in version 2.0.4221.0) contains the following XML: <!-- Default output type and path properties --> <PropertyGroup> <!-- ... --> <OutDir>$(OutputPath)</OutDir> <!-- ... --> </PropertyGroup> This doesn't work when the project importing wix.targets is built as part of a solution by a Team Foundation build script. Microsoft.TeamFoundation.Build.targets defines $(OutDir) to make the output binaries go to a build drop location, which changes for every build number. I think wix.targets needs to do do the same thing Microsoft.Common.targets does - include the condition to only override $(OutDir) if it is not already defined. <PropertyGroup> <OutDir Condition=" '$(OutDir)' == '' ">$(OutputPath) </OutDir> <!-- ... --> </PropertyGroup> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1513538&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
