Bugs item #1513538, was opened at 2006-06-27 12:10
Message generated for change (Comment added) made by justinrockwood
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: Pending
>Resolution: Fixed
Priority: 5
Private: No
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>


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

>Comment By: Justin Rockwood (justinrockwood)
Date: 2006-12-19 19:52

Message:
Logged In: YES 
user_id=1054914
Originator: NO

Checked in on 12/19/2006.

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

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1513538&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