I'm trying to install different prebuilt exe.config files based on a
language selection (not the best design but that's what I've been
handed). I tried the following

            <Component Id="EnglishComponents"
Guid="91EDC4C1-957F-4711-9652-25E2169EE3A7">
              <File Id="CRC.ReportDesigner.exe.config.English"
Name="CRC.ReportDesigner.exe.config"
Source="CRC.ReportDesigner.exe.config.english" />
              <File Id="CRC.TemplateImporter.exe.config.English"
Name="CRC.TemplateImporter.exe.config"
Source="CRC.TemplateImporter.exe.config.english" />
            </Component>

            <Component Id="GermanComponents"
Guid="463BBC9E-AD32-464e-8ABF-01FFB33F2E1F">
              <File Id="CRC.ReportDesigner.exe.config.German"
Name="CRC.ReportDesigner.exe.config"
Source="CRC.ReportDesigner.exe.config.German" />
              <File Id="CRC.TemplateImporter.exe.config.German"
Name="CRC.TemplateImporter.exe.config"
Source="CRC.TemplateImporter.exe.config.German" />
            </Component>

            <Component Id="PortugueseComponents"
Guid="96E7042D-CF54-4f8d-9055-5ED37EF12B51">
              <File Id="CRC.ReportDesigner.exe.config.Portuguese"
Name="CRC.ReportDesigner.exe.config"
Source="CRC.ReportDesigner.exe.config.Portuguese" />
              <File Id="CRC.TemplateImporter.exe.config.Portuguese"
Name="CRC.TemplateImporter.exe.config"
Source="CRC.TemplateImporter.exe.config.Portuguese" />
            </Component>

            <Component Id="SwedishComponents"
Guid="650562FE-F9E8-481d-91DC-F2D0838A9A12">
              <File Id="CRC.ReportDesigner.exe.config.Swedish"
Name="CRC.ReportDesigner.exe.config"
Source="CRC.ReportDesigner.exe.config.Swedish" />
              <File Id="CRC.TemplateImporter.exe.config.Swedish"
Name="CRC.TemplateImporter.exe.config"
Source="CRC.TemplateImporter.exe.config.Swedish" />
            </Component>

 
...

    <Feature Id="EnglishFeatures" Title="English Features" Level="0">
      <ComponentRef Id="EnglishComponents" />
      <Condition Level="1">Language="English"</Condition>
    </Feature>

    <Feature Id="GermanFeatures" Title="German Features" Level="0">
      <ComponentRef Id="GermanComponents" />
      <Condition Level="1">Language="German"</Condition>
    </Feature>

    <Feature Id="PortugueseFeatures" Title="Portuguese Features"
Level="0">
      <ComponentRef Id="PortugueseComponents" />
      <Condition Level="1">Language="Portuguese"</Condition>
    </Feature>

    <Feature Id="SwedishFeatures" Title="Swedish Features" Level="0">
      <ComponentRef Id="SwedishComponents" />
      <Condition Level="1">Language="Swedish"</Condition>
    </Feature>

I get ICE30 errors which makes sense in hind sight. Any ideas on how I
can do this?

- Mike

----------------------------------------------------------------------------
This message and any included attachments are from Siemens Medical Solutions
and are intended only for the addressee(s).
The information contained herein may include trade secrets or privileged or
otherwise confidential information. Unauthorized review, forwarding, printing,
copying, distributing, or using such information is strictly prohibited and may
be unlawful. If you received this message in error, or have reason to believe
you are not authorized to receive it, please promptly delete this message and
notify the sender by e-mail with a copy to [EMAIL PROTECTED]

Thank you

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to