q1 - Are fragments still the recommended way for breaking apart a wxs
development project into feature associated source files?
q2 - Is there a recommended wix3 solution for targeting installationlocation at
c:\Program Files (x86)\... on x64 systems and c:\Program Files\... on x86
systems?
Searching through some of the mail archives it would seem to suggest using
something like the following approach but that appears to have you defining
your features and components twice?
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLLOCATION" Name="My Deliverable Name">
<!-- TODO: Remove the comments around this Component element
and the ComponentRef below in order to add resources to this installer. -->
<Component Id="ProductComponent"
Guid="48e4d0e6-4081-4338-86df-7d56235eee34">
<!-- TODO: Insert files, registry keys, and other
resources here. -->
<Condition>(VersionNT) AND (NOT > VersionNT64)</Condition>
</Component>
</Directory>
</Directory>
<Directory Id="ProgramFiles64Folder">
<Directory Id="INSTALLLOCATION1" Name="My Deliverable Name">
<!-- TODO: Remove the comments around this Component element and
the ComponentRef below in order to add resources to this installer. -->
<Component Id="ProductComponent1"
Guid="48e4d0e6-4081-4338-86df-7d56235eee34">
<!-- TODO: Insert files, registry keys, and other resources
here. -->
<Condition>(VersionNT) AND (NOT > VersionNT64)</Condition>
</Component>
</Directory>
</Directory>
</Directory>
/robertob
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users