Bugs item #1687513, was opened at 2007-03-24 19:31 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=1687513&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: msbuild Group: v3.0 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Dave Cluderay (daveclud) Assigned to: Nobody/Anonymous (nobody) Summary: SuppressIces does not accept multiple ICEs. Initial Comment: I am trying to use the following property definition in my MSBuild Project: <PropertyGroup> ... <SuppressIces>ICE90;ICE61</SuppressIces> ... </PropertyGroup> If I just include one of the ICEs, everything is OK, and the LIGHT command line shown in the MSBuild output is correct. I expected though that the above syntax would result in two separate -sice arguments, i.e.: -sice:ICE90 -sice:ICE61 Instead, the command-line just inserts the property as-is: -sice:ICE90;ICE61 LIGHT doesn't understand this and does not suppress either ICE. I can't see any workaround for this, except to alter the source and recompile WixTasks.dll. Note that fudging my MSBuild project file to say... <SuppressIces>ICE90 -sice:ICE61</SuppressIces> ...does not work, since quotes are used to escape the value: -sice:"ICE90 -sice:ICE61" Note: In case you are interested, the reason I am suppressing ICE61 is that there seems to be a bug whereby it only allows the build version to be in the range 0-32767 (should be 0-65535). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1687513&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
