Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WiXHelper: Refactor wixDir function to improve major upgrade support #818

Merged
merged 1 commit into from
May 26, 2015

Conversation

DigitalFlow
Copy link
Contributor

I just realized that the current implementation of wixDir somewhat limits major upgrades.
The current implementation generates random GUIDs for the component IDs on each build.
This is a big problem for Windows Installer, since it uses the component GUID for identifying components through each update.
When upgrading with random IDs, your old files are all deleted, so potentially existing edited config files will be reset.
My fix makes use of WiX auto-generated GUIDs, which stay the same throughout upgrades, if the target path of the component is not changed.
In addition to that, I create separate components for each file, which is a best practice for ensuring resiliency.

forki added a commit that referenced this pull request May 26, 2015
WiXHelper: Refactor wixDir function to improve major upgrade support
@forki forki merged commit 05d57e7 into fsprojects:master May 26, 2015
forki added a commit that referenced this pull request May 26, 2015
WiXHelper: Refactor wixDir function to improve major upgrade support
@forki
Copy link
Member

forki commented Aug 24, 2015

I had to revert this since I'm getting:

Windows Installer XML Toolset Linker version 3.8.1128.0
[13:12:26][Step 1/1] Copyright (c) Outercurve Foundation. All rights reserved.
[13:12:26][Step 1/1] 
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(120) : error LGHT0204 : ICE21: Component: 'diffmerge1' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(125) : error LGHT0204 : ICE21: Component: 'diffmerge2' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(130) : error LGHT0204 : ICE21: Component: 'diffmerge3' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(135) : error LGHT0204 : ICE21: Component: 'diffmerge4' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(140) : error LGHT0204 : ICE21: Component: 'diffmerge5' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(145) : error LGHT0204 : ICE21: Component: 'diffmerge6' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(157) : error LGHT0204 : ICE21: Component: 'icons1' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(162) : error LGHT0204 : ICE21: Component: 'icons2' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(167) : error LGHT0204 : ICE21: Component: 'icons3' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(172) : error LGHT0204 : ICE21: Component: 'icons4' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(177) : error LGHT0204 : ICE21: Component: 'icons5' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(182) : error LGHT0204 : ICE21: Component: 'icons6' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(187) : error LGHT0204 : ICE21: Component: 'icons7' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(192) : error LGHT0204 : ICE21: Component: 'icons8' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(197) : error LGHT0204 : ICE21: Component: 'icons9' does not belong to any Feature.
[13:13:02][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(202) : error LGHT0204 : ICE21: Component: 'icons10' does not belong to any Feature.

...

Any chance you could resend the PR with a fixed version?

@DigitalFlow
Copy link
Contributor Author

I would like to look into this, which functions did you use, which file selector?
Did you include those files into one feature?
If you could show me the relevant part of your buildscript, I would probably be able to find the issue.

@forki
Copy link
Member

forki commented Aug 25, 2015

Target "BuildSetup" (fun _ ->
    // Copy all important files to the deploy directory
    !! (buildDir + "/**/*.dll")
      ++ (buildDir + "/**/*.exe")
      ++ (buildDir + "/**/*.config")
      |> Copy deployPrepDir 

    // replace tags in a template file in order to generate a WiX script
    let TRUE = fun _ -> true

    let replacements = [
        "@build.number@",
            if isGitlabCI then "6.16.42." + buildVersion
            elif not isLocalBuild then buildVersion else "0.1.0.0"
        "@product.productcode@",System.Guid.NewGuid().ToString()
        "@HelpFiles@",getFilesAsWiXString helpFiles
        "@ScriptFiles@",getFilesAsWiXString scriptFiles
        "@gitnav@",wixDir TRUE false (directoryInfo(deployPrepDir))
        "@diffmerge@",wixDir TRUE true (directoryInfo(bundledDir @@ "diffmerge"))
        "@icons@",wixDir TRUE true (directoryInfo(bundledDir @@ "icons"))
        "@pspad@",wixDir TRUE true (directoryInfo(bundledDir @@ "PsPad"))
        "@winmerge@",wixDir TRUE true (directoryInfo(bundledDir @@ "WinMergePortable"))
        "@diffmergeComponents@",wixComponentRefs (directoryInfo(bundledDir @@ "diffmerge"))
        "@iconsComponents@",wixComponentRefs (directoryInfo(bundledDir @@ "icons"))
        "@pspadComponents@",wixComponentRefs (directoryInfo(bundledDir @@ "PsPad"))
        "@winmergeComponents@",wixComponentRefs (directoryInfo(bundledDir @@ "WinMergePortable"))]

    processTemplates replacements setupFiles

    // run the WiX tools
    WiX (fun p -> {p with ToolDirectory = WiXPath}) 
        setupFileName
        (setupBuildDir + "GitNav.Setup.wxs.template")
)

there is nothing special in it.

@DigitalFlow
Copy link
Contributor Author

Ok, so the icons and diffmerge part of the replacements rolls up to a feature in your template then?

@forki
Copy link
Member

forki commented Aug 25, 2015

<?xml version="1.0" encoding="utf-8"?>

<?define Product.Author = "Steffen Forkmann" ?>
<?define Product.Version = "@build.number@" ?>
<?define Product.UpgradeCode = "{D03E4CD9-4F59-4BD3-B90C-4FC2CCC91DD1}" ?>
<?define Product.ProductCode = "@product.productcode@" ?>
<?define Product.InstallDir = "GitNav" ?>
<?define Product.Name = "GitNav" ?>

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
     xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
  <Product Id="$(var.Product.ProductCode)"
             Name="$(var.Product.Name)"
             Version="$(var.Product.Version)"
       Language="1033"
             Manufacturer="$(var.Product.Author)"
             UpgradeCode="$(var.Product.UpgradeCode)"
             Codepage="1252">
    <Package
                 InstallerVersion="200"
                 Compressed="yes" />

    <!--
        This information enables Windows Installer major upgrade functionality so users can seamlessly
        install a new version of the product and have the old version automatically uninstall behind
        the scenes. See the following topic in the MSDN Library for additional information:
        http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/major_upgrades.asp
        -->
    <Upgrade Id="$(var.Product.UpgradeCode)">
      <UpgradeVersion Minimum="$(var.Product.Version)"
                            OnlyDetect="yes"
                            Property="NEWERVERSIONDETECTED" />
      <UpgradeVersion Minimum="0.0.0.0"
                            IncludeMinimum="yes"
                            Maximum="$(var.Product.Version)"
                            IncludeMaximum="no"
                            Property="OLDERVERSIONBEINGUPGRADED" />
    </Upgrade>

    <PropertyRef Id="NETFRAMEWORK35"/>


    <Condition Message="This application requires .NET Framework 3.5. Please install the .NET Framework then run this installer again.">
      <![CDATA[Installed OR NETFRAMEWORK35 = "#1"]]>
    </Condition>

    <!--
        This custom action prevents users from installing if a newer version of this product is already
        installed on the system. This is a part of Windows Installer major upgrade functionality.
        -->
    <CustomAction Id="CustomAction.BlockOlderVersionInstall" Error="You have already a newer version of GitNav installed." />
    <Property Id="GITNAVPATH"><![CDATA[c:\msu\gitnav\]]></Property>
    <Media Id="1"   Cabinet="GitNav.cab" EmbedCab="yes" />

    <Directory Id="TARGETDIR" Name="SourceDir">
      <Component Id="RegistryEntries" Guid="E5DC5600-1386-471C-8949-4946FC33752F">
        <RegistryKey Root="HKCR"
                     Key="Folder\shell\gitnav-pack"
              Action="createAndRemoveOnUninstall">
          <RegistryValue Type="string" Value="Gitnav-pack" />
        </RegistryKey>
        <RegistryKey Root="HKCR"
                     Key="Folder\shell\gitnav-pack\command"
              Action="createAndRemoveOnUninstall">
          <RegistryValue Type="string" Value="c:\msu\gitnav\gitnav.exe pack &quot;%1&quot; import.nav" />
        </RegistryKey> 
        <RegistryKey Root="HKCR"
                     Key="txtfile\shell\Gitnav-split"
              Action="createAndRemoveOnUninstall">
        </RegistryKey>
        <RegistryKey Root="HKCR"
                     Key="txtfile\shell\Gitnav-split\command"
              Action="createAndRemoveOnUninstall">
          <RegistryValue Type="string" Value="c:\msu\gitnav\gitnav.exe split &quot;%1&quot;" />
        </RegistryKey>
        <RegistryKey Root="HKCR"
                     Key="SystemFileAssociations\text\shell\Gitnav-split"
              Action="createAndRemoveOnUninstall">
        </RegistryKey>
        <RegistryKey Root="HKCR"
                     Key="SystemFileAssociations\text\shell\Gitnav-split\command"
              Action="createAndRemoveOnUninstall">
          <RegistryValue Type="string" Value="c:\msu\gitnav\gitnav.exe split &quot;%1&quot;" />
        </RegistryKey>
      </Component>
      <Directory Id="ProgramFilesFolder">
        <Directory Id="GITNAVPATH" Name=".">
          <Directory Id="bundled" Name="bundled">
            <Directory Id="Console2" Name="Console2">
              <Directory Id="Microsoft.VC90.CRT" Name="Microsoft.VC90.CRT">
                <Component Id="Microsoft.VC90.CRT" Guid="e93805b4-f6e4-4b17-b892-710b4b62325c">
                  <File Id="CRT1" Name="Microsoft.VC90.CRT.manifest" Source="bundled/Console2/Microsoft.VC90.CRT\Microsoft.VC90.CRT.manifest" />
                  <File Id="CRT2" Name="msvcm90.dll" Source="bundled/Console2/Microsoft.VC90.CRT/msvcm90.dll" />
                  <File Id="CRT3" Name="msvcp90.dll" Source="bundled/Console2/Microsoft.VC90.CRT/msvcp90.dll" />
                  <File Id="CRT4" Name="msvcr90.dll" Source="bundled/Console2/Microsoft.VC90.CRT/msvcr90.dll" />
                </Component>
              </Directory>
              <Component Id="Console2" Guid="db533d5d-714d-42d6-a2fb-488bfff37c4e">
                <File Id="Console2_1" Name="console.chm" Source="bundled/Console2/console.chm" />
                <File Id="Console2_3" Name="Console.exe" Source="bundled/Console2/Console.exe" />
                <File Id="Console2_4" Name="ConsoleHook.dll" Source="bundled/Console2/ConsoleHook.dll" />
                <File Id="Console2_5" Name="FreeImage.dll" Source="bundled/Console2/FreeImage.dll" />
                <File Id="Console2_6" Name="FreeImagePlus.dll" Source="bundled/Console2/FreeImagePlus.dll" />
                <File Id="console.xml" Name="console.xml" Source="bundled/Console2/console.xml" />
              </Component>
            </Directory>
            <Directory Id="Log2Console" Name="Log2Console">              
              <Component Id="Log2Console" Guid="62D2E373-A2A9-4F56-B61A-D69E1C478FAE">
                <File Id="Log2Console_1" Name="Log2Console.exe" Source="bundled/Log2Console/Log2Console.exe" />
                <File Id="Log2Console_2" Name="Log2Console.exe.config" Source="bundled/Log2Console/Log2Console.exe.config" />
                <File Id="Log2Console_3" Name="log4net.dll" Source="bundled/Log2Console/log4net.dll" />
              </Component>              
            </Directory>
            @diffmerge@
            @icons@
            @pspad@
            @winmerge@
          </Directory>
          @gitnav@
          <Directory Id="HELPDIR" Name="Help">
            <Directory Id="HELPSTYLESDIR" Name="styles">
              <Component Id="HelpStyles" Guid="{22BEED9C-7389-42E0-AD6C-4171E1240BE0}">
                <File Id="layout.css" Name="layout.css" Source="docs/styles/layout.css" />
                <File Id="styles2.css" Name="style2.css" Source="docs/styles/style2.css" />
              </Component>
            </Directory>
            <Component Id="Help" Guid="{D1429F81-DDDB-4DE2-879A-C58E7DD8E928}">
              @HelpFiles@
            </Component>
          </Directory>
          <Directory Id="SCRIPTSDIR" Name="Scripts">
            <Component Id="Scripts" Guid="{44E15641-EF67-449B-BC0B-F37F9645E542}">
              @ScriptFiles@
            </Component>
          </Directory>
        </Directory>
      </Directory>
      <Directory Id="PersonalFolder">
        <Directory Id="WindowsPowerShell" Name="WindowsPowerShell">
          <Component Id="ProfileScript" Guid="{CFDA7B65-B1FD-4FC7-9035-F3C9F6D4D375}">
            <RemoveFolder Id='IDProgramGroup' On='uninstall'/>
            <RegistryValue Root='HKCU' Key='SOFTWARE\msu\GitNav' Type='string' Value='Install' KeyPath='yes' />
            <File Id="profile.ps1" Name="profile.ps1" Source="scripts/profile.ps1" />
          </Component>
        </Directory>
      </Directory>
    </Directory>    
    <Feature Id="Feature.Core"
                 Title="GitNav Core Components"
                 Description="GitNav"
                 Display="expand"
                 ConfigurableDirectory="GITNAVPATH"
                 Level="1"
                 Absent="disallow"
                 AllowAdvertise="no">
      <ComponentRef Id="Help"/>
      <ComponentRef Id="HelpStyles"/>
      <ComponentRef Id="Scripts"/>
      <ComponentRef Id="ProfileScript"/>
      <ComponentRef Id="prepDeploy"/>
      <ComponentRef Id="Microsoft.VC90.CRT"/>
      <ComponentRef Id="RegistryEntries" />
      <ComponentRef Id="Console2"/>
      <ComponentRef Id="Log2Console"/>
      @diffmergeComponents@
      @iconsComponents@
      @pspadComponents@
      @winmergeComponents@
    </Feature>

    <!--
        The InstallExecuteSequence table describes the order that actions will be executed during
        installation, repair and uninstall of this product.
        -->
    <Property Id="MyURL"><![CDATA[file:///C:/msu/gitnav/Help/changelog.htm]]></Property>
    <CustomAction Id="SetOpenURL" Property="WixShellExecTarget" Value="[MyURL]" />
    <CustomAction Id="OpenURL" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" Return="ignore" />
    <InstallExecuteSequence>
      <Custom Action="CustomAction.BlockOlderVersionInstall"
                    After="FindRelatedProducts">
        <![CDATA[NEWERVERSIONDETECTED]]>
      </Custom>
      <Custom Action="CustomAction.SetARPINSTALLLOCATION" After="InstallValidate" />
      <RemoveExistingProducts Before="InstallInitialize" />
      <LaunchConditions After="AppSearch" />
      <!-- Launch changelog after install, but not remove -->
      <Custom Action="SetOpenURL" After="InstallFinalize"><![CDATA[NOT REMOVE]]></Custom>
      <Custom Action="OpenURL" After="SetOpenURL"><![CDATA[NOT REMOVE]]></Custom>      
    </InstallExecuteSequence>

    <!--
        The InstallUISequence table describes the order that actions will be executed when the user
        runs setup in full UI mode. Some actions must be scheduled in the UI and the execute sequence
        tables to ensure that they will run regardless of whether the user runs setup in full UI mode
        or in reduced UI or silent modes.
        -->
    <InstallUISequence>
      <Custom Action="CustomAction.BlockOlderVersionInstall"
                    After="FindRelatedProducts">
        <![CDATA[NEWERVERSIONDETECTED]]>
      </Custom>
    </InstallUISequence>


    <!--
        These properties define links that will appear in the Add/Remove Programs control panel when
        this product is installed on the system.
        -->
    <Property Id="ARPURLINFOABOUT"
                  Value="http://www.msu-solutions.de/" />
    <Property Id="ARPCONTACT"
                  Value="$(var.Product.Author)" />
    <Property Id="ARPCOMMENTS"
                  Value="!(var.Product.Name)" />
    <CustomAction Id="CustomAction.SetARPINSTALLLOCATION"
                      Property="ARPINSTALLLOCATION"
                      Value="[INSTALLDIR]" />

    <!--
        This property defines the ALLUSERS property to be 1, which indicates that this product will be
        installed per-machine instead of per-user.
        -->
    <Property Id="ALLUSERS">
      <![CDATA[1]]>
    </Property>

    <Property Id="WIXUI_INSTALLDIR"
                  Value="INSTALLDIR"/>
  </Product>
</Wix>

@DigitalFlow
Copy link
Contributor Author

I'll have to look deeper into this, I'm guessing that there might be line breaks in the file tags, which leads to errors when splitting the files across line breaks in the wixDir funtion.
I'll report my findings.
Can you check if there are line breaks in your wxs file?

@forki
Copy link
Member

forki commented Aug 25, 2015

awesome. If i did something wrong with the template then I'm happy to fix it there. but I'm lost.

@DigitalFlow
Copy link
Contributor Author

Just out of curiosity, if you change the icons and diff files to a separate definition, like this:

let diffMerge = wixDir TRUE true (directoryInfo(bundledDir @@ "diffmerge"))
let icons = wixDir TRUE true (directoryInfo(bundledDir @@ "icons"))

let replacements = [
        "@build.number@",
            if isGitlabCI then "6.16.42." + buildVersion
            elif not isLocalBuild then buildVersion else "0.1.0.0"
        "@product.productcode@",System.Guid.NewGuid().ToString()
        "@HelpFiles@",getFilesAsWiXString helpFiles
        "@ScriptFiles@",getFilesAsWiXString scriptFiles
        "@gitnav@",wixDir TRUE false (directoryInfo(deployPrepDir))
        "@diffmerge@", diffMerge
        "@icons@", icons
        "@pspad@",wixDir TRUE true (directoryInfo(bundledDir @@ "PsPad"))
        "@winmerge@",wixDir TRUE true (directoryInfo(bundledDir @@ "WinMergePortable"))
        "@diffmergeComponents@", getComponentIdsFromWiXString diffMerge
        "@iconsComponents@", getComponentIdsFromWiXString icons
        "@pspadComponents@",wixComponentRefs (directoryInfo(bundledDir @@ "PsPad"))
        "@winmergeComponents@",wixComponentRefs (directoryInfo(bundledDir @@ "WinMergePortable"))]

Does it work with the old version of wixDir then?

@forki
Copy link
Member

forki commented Aug 26, 2015

that seems to help a bit, but I still get a very very long list:

[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(255) : error LGHT0204 : ICE21: Component: 'Colors1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(260) : error LGHT0204 : ICE21: Component: 'Colors2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(265) : error LGHT0204 : ICE21: Component: 'Colors3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(270) : error LGHT0204 : ICE21: Component: 'Colors4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(275) : error LGHT0204 : ICE21: Component: 'Colors5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(280) : error LGHT0204 : ICE21: Component: 'Colors6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(285) : error LGHT0204 : ICE21: Component: 'Colors7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(290) : error LGHT0204 : ICE21: Component: 'Colors8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(295) : error LGHT0204 : ICE21: Component: 'Colors9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(300) : error LGHT0204 : ICE21: Component: 'Colors10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(305) : error LGHT0204 : ICE21: Component: 'Colors11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(310) : error LGHT0204 : ICE21: Component: 'Colors12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(315) : error LGHT0204 : ICE21: Component: 'Colors13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(327) : error LGHT0204 : ICE21: Component: 'Context1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(332) : error LGHT0204 : ICE21: Component: 'Context2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(337) : error LGHT0204 : ICE21: Component: 'Context3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(342) : error LGHT0204 : ICE21: Component: 'Context4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(347) : error LGHT0204 : ICE21: Component: 'Context5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(352) : error LGHT0204 : ICE21: Component: 'Context6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(357) : error LGHT0204 : ICE21: Component: 'Context7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(362) : error LGHT0204 : ICE21: Component: 'Context8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(367) : error LGHT0204 : ICE21: Component: 'Context9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(372) : error LGHT0204 : ICE21: Component: 'Context10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(377) : error LGHT0204 : ICE21: Component: 'Context11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(382) : error LGHT0204 : ICE21: Component: 'Context12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(387) : error LGHT0204 : ICE21: Component: 'Context13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(392) : error LGHT0204 : ICE21: Component: 'Context14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(397) : error LGHT0204 : ICE21: Component: 'Context15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(402) : error LGHT0204 : ICE21: Component: 'Context16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(407) : error LGHT0204 : ICE21: Component: 'Context17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(412) : error LGHT0204 : ICE21: Component: 'Context18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(417) : error LGHT0204 : ICE21: Component: 'Context19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(422) : error LGHT0204 : ICE21: Component: 'Context20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(427) : error LGHT0204 : ICE21: Component: 'Context21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(432) : error LGHT0204 : ICE21: Component: 'Context22' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(437) : error LGHT0204 : ICE21: Component: 'Context23' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(442) : error LGHT0204 : ICE21: Component: 'Context24' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(447) : error LGHT0204 : ICE21: Component: 'Context25' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(452) : error LGHT0204 : ICE21: Component: 'Context26' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(457) : error LGHT0204 : ICE21: Component: 'Context27' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(462) : error LGHT0204 : ICE21: Component: 'Context28' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(467) : error LGHT0204 : ICE21: Component: 'Context29' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(472) : error LGHT0204 : ICE21: Component: 'Context30' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(477) : error LGHT0204 : ICE21: Component: 'Context31' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(482) : error LGHT0204 : ICE21: Component: 'Context32' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(487) : error LGHT0204 : ICE21: Component: 'Context33' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(492) : error LGHT0204 : ICE21: Component: 'Context34' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(497) : error LGHT0204 : ICE21: Component: 'Context35' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(502) : error LGHT0204 : ICE21: Component: 'Context36' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(507) : error LGHT0204 : ICE21: Component: 'Context37' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(512) : error LGHT0204 : ICE21: Component: 'Context38' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(517) : error LGHT0204 : ICE21: Component: 'Context39' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(522) : error LGHT0204 : ICE21: Component: 'Context40' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(527) : error LGHT0204 : ICE21: Component: 'Context41' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(532) : error LGHT0204 : ICE21: Component: 'Context42' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(537) : error LGHT0204 : ICE21: Component: 'Context43' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(542) : error LGHT0204 : ICE21: Component: 'Context44' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(547) : error LGHT0204 : ICE21: Component: 'Context45' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(552) : error LGHT0204 : ICE21: Component: 'Context46' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(557) : error LGHT0204 : ICE21: Component: 'Context47' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(562) : error LGHT0204 : ICE21: Component: 'Context48' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(567) : error LGHT0204 : ICE21: Component: 'Context49' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(572) : error LGHT0204 : ICE21: Component: 'Context50' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(577) : error LGHT0204 : ICE21: Component: 'Context51' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(582) : error LGHT0204 : ICE21: Component: 'Context52' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(587) : error LGHT0204 : ICE21: Component: 'Context53' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(592) : error LGHT0204 : ICE21: Component: 'Context54' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(597) : error LGHT0204 : ICE21: Component: 'Context55' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(602) : error LGHT0204 : ICE21: Component: 'Context56' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(607) : error LGHT0204 : ICE21: Component: 'Context57' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(612) : error LGHT0204 : ICE21: Component: 'Context58' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(617) : error LGHT0204 : ICE21: Component: 'Context59' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(622) : error LGHT0204 : ICE21: Component: 'Context60' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(634) : error LGHT0204 : ICE21: Component: 'Convert1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(639) : error LGHT0204 : ICE21: Component: 'Convert2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(644) : error LGHT0204 : ICE21: Component: 'Convert3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(649) : error LGHT0204 : ICE21: Component: 'Convert4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(654) : error LGHT0204 : ICE21: Component: 'Convert5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(659) : error LGHT0204 : ICE21: Component: 'Convert6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(664) : error LGHT0204 : ICE21: Component: 'Convert7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(669) : error LGHT0204 : ICE21: Component: 'Convert8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(674) : error LGHT0204 : ICE21: Component: 'Convert9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(679) : error LGHT0204 : ICE21: Component: 'Convert10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(684) : error LGHT0204 : ICE21: Component: 'Convert11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(689) : error LGHT0204 : ICE21: Component: 'Convert12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(694) : error LGHT0204 : ICE21: Component: 'Convert13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(699) : error LGHT0204 : ICE21: Component: 'Convert14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(704) : error LGHT0204 : ICE21: Component: 'Convert15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(709) : error LGHT0204 : ICE21: Component: 'Convert16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(714) : error LGHT0204 : ICE21: Component: 'Convert17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(719) : error LGHT0204 : ICE21: Component: 'Convert18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(724) : error LGHT0204 : ICE21: Component: 'Convert19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(729) : error LGHT0204 : ICE21: Component: 'Convert20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(746) : error LGHT0204 : ICE21: Component: 'Lang2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(751) : error LGHT0204 : ICE21: Component: 'Lang3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(756) : error LGHT0204 : ICE21: Component: 'Lang4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(761) : error LGHT0204 : ICE21: Component: 'Lang5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(766) : error LGHT0204 : ICE21: Component: 'Lang6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(771) : error LGHT0204 : ICE21: Component: 'Lang7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(776) : error LGHT0204 : ICE21: Component: 'Lang8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(781) : error LGHT0204 : ICE21: Component: 'Lang9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(786) : error LGHT0204 : ICE21: Component: 'Lang10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(791) : error LGHT0204 : ICE21: Component: 'Lang11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(796) : error LGHT0204 : ICE21: Component: 'Lang12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(801) : error LGHT0204 : ICE21: Component: 'Lang13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(806) : error LGHT0204 : ICE21: Component: 'Lang14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(811) : error LGHT0204 : ICE21: Component: 'Lang15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(816) : error LGHT0204 : ICE21: Component: 'Lang16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(821) : error LGHT0204 : ICE21: Component: 'Lang17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(826) : error LGHT0204 : ICE21: Component: 'Lang18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(831) : error LGHT0204 : ICE21: Component: 'Lang19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(836) : error LGHT0204 : ICE21: Component: 'Lang20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(841) : error LGHT0204 : ICE21: Component: 'Lang21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(846) : error LGHT0204 : ICE21: Component: 'Lang22' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(851) : error LGHT0204 : ICE21: Component: 'Lang23' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(856) : error LGHT0204 : ICE21: Component: 'Lang24' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(861) : error LGHT0204 : ICE21: Component: 'Lang25' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(866) : error LGHT0204 : ICE21: Component: 'Lang26' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(871) : error LGHT0204 : ICE21: Component: 'Lang27' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(876) : error LGHT0204 : ICE21: Component: 'Lang28' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(881) : error LGHT0204 : ICE21: Component: 'Lang29' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(886) : error LGHT0204 : ICE21: Component: 'Lang30' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(891) : error LGHT0204 : ICE21: Component: 'Lang31' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(896) : error LGHT0204 : ICE21: Component: 'Lang32' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(901) : error LGHT0204 : ICE21: Component: 'Lang33' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(906) : error LGHT0204 : ICE21: Component: 'Lang34' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(911) : error LGHT0204 : ICE21: Component: 'Lang35' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(916) : error LGHT0204 : ICE21: Component: 'Lang36' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(921) : error LGHT0204 : ICE21: Component: 'Lang37' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(926) : error LGHT0204 : ICE21: Component: 'Lang38' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(931) : error LGHT0204 : ICE21: Component: 'Lang39' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(936) : error LGHT0204 : ICE21: Component: 'Lang40' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(941) : error LGHT0204 : ICE21: Component: 'Lang41' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(946) : error LGHT0204 : ICE21: Component: 'Lang42' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(951) : error LGHT0204 : ICE21: Component: 'Lang43' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(956) : error LGHT0204 : ICE21: Component: 'Lang44' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(961) : error LGHT0204 : ICE21: Component: 'Lang45' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(966) : error LGHT0204 : ICE21: Component: 'Lang46' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(971) : error LGHT0204 : ICE21: Component: 'Lang47' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(976) : error LGHT0204 : ICE21: Component: 'Lang48' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(981) : error LGHT0204 : ICE21: Component: 'Lang49' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(986) : error LGHT0204 : ICE21: Component: 'Lang50' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(991) : error LGHT0204 : ICE21: Component: 'Lang51' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(996) : error LGHT0204 : ICE21: Component: 'Lang52' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1001) : error LGHT0204 : ICE21: Component: 'Lang53' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1006) : error LGHT0204 : ICE21: Component: 'Lang54' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1011) : error LGHT0204 : ICE21: Component: 'Lang55' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1016) : error LGHT0204 : ICE21: Component: 'Lang56' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1021) : error LGHT0204 : ICE21: Component: 'Lang57' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1026) : error LGHT0204 : ICE21: Component: 'Lang58' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1031) : error LGHT0204 : ICE21: Component: 'Lang59' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1036) : error LGHT0204 : ICE21: Component: 'Lang60' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1041) : error LGHT0204 : ICE21: Component: 'Lang61' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1046) : error LGHT0204 : ICE21: Component: 'Lang62' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1051) : error LGHT0204 : ICE21: Component: 'Lang63' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1056) : error LGHT0204 : ICE21: Component: 'Lang64' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1061) : error LGHT0204 : ICE21: Component: 'Lang65' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1066) : error LGHT0204 : ICE21: Component: 'Lang66' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1071) : error LGHT0204 : ICE21: Component: 'Lang67' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1076) : error LGHT0204 : ICE21: Component: 'Lang68' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1081) : error LGHT0204 : ICE21: Component: 'Lang69' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1086) : error LGHT0204 : ICE21: Component: 'Lang70' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1091) : error LGHT0204 : ICE21: Component: 'Lang71' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1096) : error LGHT0204 : ICE21: Component: 'Lang72' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1101) : error LGHT0204 : ICE21: Component: 'Lang73' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1106) : error LGHT0204 : ICE21: Component: 'Lang74' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1111) : error LGHT0204 : ICE21: Component: 'Lang75' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1116) : error LGHT0204 : ICE21: Component: 'Lang76' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1121) : error LGHT0204 : ICE21: Component: 'Lang77' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1126) : error LGHT0204 : ICE21: Component: 'Lang78' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1131) : error LGHT0204 : ICE21: Component: 'Lang79' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1136) : error LGHT0204 : ICE21: Component: 'Lang80' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1141) : error LGHT0204 : ICE21: Component: 'Lang81' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1146) : error LGHT0204 : ICE21: Component: 'Lang82' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1151) : error LGHT0204 : ICE21: Component: 'Lang83' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1156) : error LGHT0204 : ICE21: Component: 'Lang84' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1161) : error LGHT0204 : ICE21: Component: 'Lang85' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1166) : error LGHT0204 : ICE21: Component: 'Lang86' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1179) : error LGHT0204 : ICE21: Component: 'FileType1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1184) : error LGHT0204 : ICE21: Component: 'FileType2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1189) : error LGHT0204 : ICE21: Component: 'FileType3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1194) : error LGHT0204 : ICE21: Component: 'FileType4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1199) : error LGHT0204 : ICE21: Component: 'FileType5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1214) : error LGHT0204 : ICE21: Component: 'JScript1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1219) : error LGHT0204 : ICE21: Component: 'JScript2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1231) : error LGHT0204 : ICE21: Component: 'VBScript1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1236) : error LGHT0204 : ICE21: Component: 'VBScript2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1253) : error LGHT0204 : ICE21: Component: 'Skin1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1258) : error LGHT0204 : ICE21: Component: 'Skin2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1263) : error LGHT0204 : ICE21: Component: 'Skin3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1268) : error LGHT0204 : ICE21: Component: 'Skin4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1273) : error LGHT0204 : ICE21: Component: 'Skin5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1278) : error LGHT0204 : ICE21: Component: 'Skin6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1290) : error LGHT0204 : ICE21: Component: 'Spell1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1295) : error LGHT0204 : ICE21: Component: 'Spell2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1300) : error LGHT0204 : ICE21: Component: 'Spell3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1312) : error LGHT0204 : ICE21: Component: 'Support1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1317) : error LGHT0204 : ICE21: Component: 'Support2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1322) : error LGHT0204 : ICE21: Component: 'Support3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1334) : error LGHT0204 : ICE21: Component: 'Syntax1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1339) : error LGHT0204 : ICE21: Component: 'Syntax2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1344) : error LGHT0204 : ICE21: Component: 'Syntax3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1349) : error LGHT0204 : ICE21: Component: 'Syntax4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1354) : error LGHT0204 : ICE21: Component: 'Syntax5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1359) : error LGHT0204 : ICE21: Component: 'Syntax6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1364) : error LGHT0204 : ICE21: Component: 'Syntax7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1369) : error LGHT0204 : ICE21: Component: 'Syntax8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1374) : error LGHT0204 : ICE21: Component: 'Syntax9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1379) : error LGHT0204 : ICE21: Component: 'Syntax10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1384) : error LGHT0204 : ICE21: Component: 'Syntax11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1389) : error LGHT0204 : ICE21: Component: 'Syntax12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1394) : error LGHT0204 : ICE21: Component: 'Syntax13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1399) : error LGHT0204 : ICE21: Component: 'Syntax14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1404) : error LGHT0204 : ICE21: Component: 'Syntax15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1409) : error LGHT0204 : ICE21: Component: 'Syntax16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1414) : error LGHT0204 : ICE21: Component: 'Syntax17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1419) : error LGHT0204 : ICE21: Component: 'Syntax18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1424) : error LGHT0204 : ICE21: Component: 'Syntax19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1429) : error LGHT0204 : ICE21: Component: 'Syntax20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1434) : error LGHT0204 : ICE21: Component: 'Syntax21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1439) : error LGHT0204 : ICE21: Component: 'Syntax22' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1444) : error LGHT0204 : ICE21: Component: 'Syntax23' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1449) : error LGHT0204 : ICE21: Component: 'Syntax24' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1454) : error LGHT0204 : ICE21: Component: 'Syntax25' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1459) : error LGHT0204 : ICE21: Component: 'Syntax26' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1464) : error LGHT0204 : ICE21: Component: 'Syntax27' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1469) : error LGHT0204 : ICE21: Component: 'Syntax28' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1474) : error LGHT0204 : ICE21: Component: 'Syntax29' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1479) : error LGHT0204 : ICE21: Component: 'Syntax30' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1484) : error LGHT0204 : ICE21: Component: 'Syntax31' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1489) : error LGHT0204 : ICE21: Component: 'Syntax32' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1494) : error LGHT0204 : ICE21: Component: 'Syntax33' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1499) : error LGHT0204 : ICE21: Component: 'Syntax34' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1504) : error LGHT0204 : ICE21: Component: 'Syntax35' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1509) : error LGHT0204 : ICE21: Component: 'Syntax36' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1514) : error LGHT0204 : ICE21: Component: 'Syntax37' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1519) : error LGHT0204 : ICE21: Component: 'Syntax38' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1524) : error LGHT0204 : ICE21: Component: 'Syntax39' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1529) : error LGHT0204 : ICE21: Component: 'Syntax40' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1534) : error LGHT0204 : ICE21: Component: 'Syntax41' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1539) : error LGHT0204 : ICE21: Component: 'Syntax42' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1544) : error LGHT0204 : ICE21: Component: 'Syntax43' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1549) : error LGHT0204 : ICE21: Component: 'Syntax44' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1554) : error LGHT0204 : ICE21: Component: 'Syntax45' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1559) : error LGHT0204 : ICE21: Component: 'Syntax46' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1564) : error LGHT0204 : ICE21: Component: 'Syntax47' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1569) : error LGHT0204 : ICE21: Component: 'Syntax48' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1574) : error LGHT0204 : ICE21: Component: 'Syntax49' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1579) : error LGHT0204 : ICE21: Component: 'Syntax50' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1584) : error LGHT0204 : ICE21: Component: 'Syntax51' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1589) : error LGHT0204 : ICE21: Component: 'Syntax52' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1594) : error LGHT0204 : ICE21: Component: 'Syntax53' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1599) : error LGHT0204 : ICE21: Component: 'Syntax54' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1604) : error LGHT0204 : ICE21: Component: 'Syntax55' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1609) : error LGHT0204 : ICE21: Component: 'Syntax56' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1614) : error LGHT0204 : ICE21: Component: 'Syntax57' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1619) : error LGHT0204 : ICE21: Component: 'Syntax58' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1624) : error LGHT0204 : ICE21: Component: 'Syntax59' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1629) : error LGHT0204 : ICE21: Component: 'Syntax60' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1634) : error LGHT0204 : ICE21: Component: 'Syntax61' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1639) : error LGHT0204 : ICE21: Component: 'Syntax62' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1644) : error LGHT0204 : ICE21: Component: 'Syntax63' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1649) : error LGHT0204 : ICE21: Component: 'Syntax64' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1654) : error LGHT0204 : ICE21: Component: 'Syntax65' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1659) : error LGHT0204 : ICE21: Component: 'Syntax66' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1664) : error LGHT0204 : ICE21: Component: 'Syntax67' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1669) : error LGHT0204 : ICE21: Component: 'Syntax68' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1674) : error LGHT0204 : ICE21: Component: 'Syntax69' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1679) : error LGHT0204 : ICE21: Component: 'Syntax70' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1684) : error LGHT0204 : ICE21: Component: 'Syntax71' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1689) : error LGHT0204 : ICE21: Component: 'Syntax72' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1694) : error LGHT0204 : ICE21: Component: 'Syntax73' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1699) : error LGHT0204 : ICE21: Component: 'Syntax74' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1704) : error LGHT0204 : ICE21: Component: 'Syntax75' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1709) : error LGHT0204 : ICE21: Component: 'Syntax76' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1714) : error LGHT0204 : ICE21: Component: 'Syntax77' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1719) : error LGHT0204 : ICE21: Component: 'Syntax78' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1724) : error LGHT0204 : ICE21: Component: 'Syntax79' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1729) : error LGHT0204 : ICE21: Component: 'Syntax80' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1734) : error LGHT0204 : ICE21: Component: 'Syntax81' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1739) : error LGHT0204 : ICE21: Component: 'Syntax82' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1744) : error LGHT0204 : ICE21: Component: 'Syntax83' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1749) : error LGHT0204 : ICE21: Component: 'Syntax84' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1754) : error LGHT0204 : ICE21: Component: 'Syntax85' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1759) : error LGHT0204 : ICE21: Component: 'Syntax86' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1764) : error LGHT0204 : ICE21: Component: 'Syntax87' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1769) : error LGHT0204 : ICE21: Component: 'Syntax88' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1774) : error LGHT0204 : ICE21: Component: 'Syntax89' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1779) : error LGHT0204 : ICE21: Component: 'Syntax90' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1784) : error LGHT0204 : ICE21: Component: 'Syntax91' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1789) : error LGHT0204 : ICE21: Component: 'Syntax92' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1794) : error LGHT0204 : ICE21: Component: 'Syntax93' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1799) : error LGHT0204 : ICE21: Component: 'Syntax94' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1804) : error LGHT0204 : ICE21: Component: 'Syntax95' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1809) : error LGHT0204 : ICE21: Component: 'Syntax96' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1814) : error LGHT0204 : ICE21: Component: 'Syntax97' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1819) : error LGHT0204 : ICE21: Component: 'Syntax98' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1824) : error LGHT0204 : ICE21: Component: 'Syntax99' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1829) : error LGHT0204 : ICE21: Component: 'Syntax100' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1834) : error LGHT0204 : ICE21: Component: 'Syntax101' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1839) : error LGHT0204 : ICE21: Component: 'Syntax102' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1844) : error LGHT0204 : ICE21: Component: 'Syntax103' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1849) : error LGHT0204 : ICE21: Component: 'Syntax104' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1854) : error LGHT0204 : ICE21: Component: 'Syntax105' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1859) : error LGHT0204 : ICE21: Component: 'Syntax106' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1864) : error LGHT0204 : ICE21: Component: 'Syntax107' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1869) : error LGHT0204 : ICE21: Component: 'Syntax108' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1874) : error LGHT0204 : ICE21: Component: 'Syntax109' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1879) : error LGHT0204 : ICE21: Component: 'Syntax110' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1884) : error LGHT0204 : ICE21: Component: 'Syntax111' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1889) : error LGHT0204 : ICE21: Component: 'Syntax112' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1894) : error LGHT0204 : ICE21: Component: 'Syntax113' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1899) : error LGHT0204 : ICE21: Component: 'Syntax114' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1904) : error LGHT0204 : ICE21: Component: 'Syntax115' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1909) : error LGHT0204 : ICE21: Component: 'Syntax116' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1914) : error LGHT0204 : ICE21: Component: 'Syntax117' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1919) : error LGHT0204 : ICE21: Component: 'Syntax118' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1924) : error LGHT0204 : ICE21: Component: 'Syntax119' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1929) : error LGHT0204 : ICE21: Component: 'Syntax120' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1934) : error LGHT0204 : ICE21: Component: 'Syntax121' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1939) : error LGHT0204 : ICE21: Component: 'Syntax122' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1944) : error LGHT0204 : ICE21: Component: 'Syntax123' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1949) : error LGHT0204 : ICE21: Component: 'Syntax124' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1954) : error LGHT0204 : ICE21: Component: 'Syntax125' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1959) : error LGHT0204 : ICE21: Component: 'Syntax126' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1964) : error LGHT0204 : ICE21: Component: 'Syntax127' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1969) : error LGHT0204 : ICE21: Component: 'Syntax128' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1974) : error LGHT0204 : ICE21: Component: 'Syntax129' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1979) : error LGHT0204 : ICE21: Component: 'Syntax130' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1984) : error LGHT0204 : ICE21: Component: 'Syntax131' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1989) : error LGHT0204 : ICE21: Component: 'Syntax132' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1994) : error LGHT0204 : ICE21: Component: 'Syntax133' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(1999) : error LGHT0204 : ICE21: Component: 'Syntax134' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2004) : error LGHT0204 : ICE21: Component: 'Syntax135' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2009) : error LGHT0204 : ICE21: Component: 'Syntax136' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2014) : error LGHT0204 : ICE21: Component: 'Syntax137' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2019) : error LGHT0204 : ICE21: Component: 'Syntax138' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2024) : error LGHT0204 : ICE21: Component: 'Syntax139' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2029) : error LGHT0204 : ICE21: Component: 'Syntax140' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2034) : error LGHT0204 : ICE21: Component: 'Syntax141' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2039) : error LGHT0204 : ICE21: Component: 'Syntax142' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2044) : error LGHT0204 : ICE21: Component: 'Syntax143' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2049) : error LGHT0204 : ICE21: Component: 'Syntax144' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2054) : error LGHT0204 : ICE21: Component: 'Syntax145' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2059) : error LGHT0204 : ICE21: Component: 'Syntax146' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2064) : error LGHT0204 : ICE21: Component: 'Syntax147' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2069) : error LGHT0204 : ICE21: Component: 'Syntax148' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2074) : error LGHT0204 : ICE21: Component: 'Syntax149' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2079) : error LGHT0204 : ICE21: Component: 'Syntax150' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2084) : error LGHT0204 : ICE21: Component: 'Syntax151' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2089) : error LGHT0204 : ICE21: Component: 'Syntax152' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2094) : error LGHT0204 : ICE21: Component: 'Syntax153' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2099) : error LGHT0204 : ICE21: Component: 'Syntax154' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2104) : error LGHT0204 : ICE21: Component: 'Syntax155' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2109) : error LGHT0204 : ICE21: Component: 'Syntax156' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2114) : error LGHT0204 : ICE21: Component: 'Syntax157' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2119) : error LGHT0204 : ICE21: Component: 'Syntax158' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2124) : error LGHT0204 : ICE21: Component: 'Syntax159' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2129) : error LGHT0204 : ICE21: Component: 'Syntax160' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2134) : error LGHT0204 : ICE21: Component: 'Syntax161' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2139) : error LGHT0204 : ICE21: Component: 'Syntax162' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2144) : error LGHT0204 : ICE21: Component: 'Syntax163' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2149) : error LGHT0204 : ICE21: Component: 'Syntax164' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2154) : error LGHT0204 : ICE21: Component: 'Syntax165' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2159) : error LGHT0204 : ICE21: Component: 'Syntax166' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2164) : error LGHT0204 : ICE21: Component: 'Syntax167' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2169) : error LGHT0204 : ICE21: Component: 'Syntax168' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2174) : error LGHT0204 : ICE21: Component: 'Syntax169' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2179) : error LGHT0204 : ICE21: Component: 'Syntax170' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2191) : error LGHT0204 : ICE21: Component: 'Template1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2196) : error LGHT0204 : ICE21: Component: 'Template2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2201) : error LGHT0204 : ICE21: Component: 'Template3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2206) : error LGHT0204 : ICE21: Component: 'Template4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2211) : error LGHT0204 : ICE21: Component: 'Template5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2216) : error LGHT0204 : ICE21: Component: 'Template6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2221) : error LGHT0204 : ICE21: Component: 'Template7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2226) : error LGHT0204 : ICE21: Component: 'Template8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2231) : error LGHT0204 : ICE21: Component: 'Template9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2236) : error LGHT0204 : ICE21: Component: 'Template10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2241) : error LGHT0204 : ICE21: Component: 'Template11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2246) : error LGHT0204 : ICE21: Component: 'Template12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2251) : error LGHT0204 : ICE21: Component: 'Template13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2256) : error LGHT0204 : ICE21: Component: 'Template14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2261) : error LGHT0204 : ICE21: Component: 'Template15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2266) : error LGHT0204 : ICE21: Component: 'Template16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2271) : error LGHT0204 : ICE21: Component: 'Template17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2276) : error LGHT0204 : ICE21: Component: 'Template18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2281) : error LGHT0204 : ICE21: Component: 'Template19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2286) : error LGHT0204 : ICE21: Component: 'Template20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2291) : error LGHT0204 : ICE21: Component: 'Template21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2296) : error LGHT0204 : ICE21: Component: 'Template22' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2301) : error LGHT0204 : ICE21: Component: 'Template23' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2306) : error LGHT0204 : ICE21: Component: 'Template24' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2311) : error LGHT0204 : ICE21: Component: 'Template25' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2316) : error LGHT0204 : ICE21: Component: 'Template26' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2321) : error LGHT0204 : ICE21: Component: 'Template27' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2326) : error LGHT0204 : ICE21: Component: 'Template28' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2331) : error LGHT0204 : ICE21: Component: 'Template29' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2336) : error LGHT0204 : ICE21: Component: 'Template30' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2341) : error LGHT0204 : ICE21: Component: 'Template31' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2346) : error LGHT0204 : ICE21: Component: 'Template32' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2351) : error LGHT0204 : ICE21: Component: 'Template33' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2356) : error LGHT0204 : ICE21: Component: 'Template34' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2361) : error LGHT0204 : ICE21: Component: 'Template35' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2366) : error LGHT0204 : ICE21: Component: 'Template36' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2371) : error LGHT0204 : ICE21: Component: 'Template37' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2376) : error LGHT0204 : ICE21: Component: 'Template38' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2381) : error LGHT0204 : ICE21: Component: 'Template39' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2386) : error LGHT0204 : ICE21: Component: 'Template40' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2391) : error LGHT0204 : ICE21: Component: 'Template41' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2396) : error LGHT0204 : ICE21: Component: 'Template42' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2401) : error LGHT0204 : ICE21: Component: 'Template43' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2406) : error LGHT0204 : ICE21: Component: 'Template44' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2411) : error LGHT0204 : ICE21: Component: 'Template45' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2416) : error LGHT0204 : ICE21: Component: 'Template46' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2421) : error LGHT0204 : ICE21: Component: 'Template47' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2426) : error LGHT0204 : ICE21: Component: 'Template48' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2436) : error LGHT0204 : ICE21: Component: 'PsPad1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2441) : error LGHT0204 : ICE21: Component: 'PsPad2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2446) : error LGHT0204 : ICE21: Component: 'PsPad3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2451) : error LGHT0204 : ICE21: Component: 'PsPad4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2456) : error LGHT0204 : ICE21: Component: 'PsPad5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2461) : error LGHT0204 : ICE21: Component: 'PsPad6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2466) : error LGHT0204 : ICE21: Component: 'PsPad7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2471) : error LGHT0204 : ICE21: Component: 'PsPad8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2476) : error LGHT0204 : ICE21: Component: 'PsPad9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2481) : error LGHT0204 : ICE21: Component: 'PsPad10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2486) : error LGHT0204 : ICE21: Component: 'PsPad11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2491) : error LGHT0204 : ICE21: Component: 'PsPad12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2496) : error LGHT0204 : ICE21: Component: 'PsPad13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2501) : error LGHT0204 : ICE21: Component: 'PsPad14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2506) : error LGHT0204 : ICE21: Component: 'PsPad15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2511) : error LGHT0204 : ICE21: Component: 'PsPad16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2516) : error LGHT0204 : ICE21: Component: 'PsPad17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2531) : error LGHT0204 : ICE21: Component: 'Launcher1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2541) : error LGHT0204 : ICE21: Component: 'AppInfo1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2546) : error LGHT0204 : ICE21: Component: 'AppInfo2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2551) : error LGHT0204 : ICE21: Component: 'AppInfo3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2556) : error LGHT0204 : ICE21: Component: 'AppInfo4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2561) : error LGHT0204 : ICE21: Component: 'AppInfo5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2584) : error LGHT0204 : ICE21: Component: 'Docs1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2589) : error LGHT0204 : ICE21: Component: 'Docs2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2594) : error LGHT0204 : ICE21: Component: 'Docs3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2599) : error LGHT0204 : ICE21: Component: 'Docs4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2604) : error LGHT0204 : ICE21: Component: 'Docs5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2609) : error LGHT0204 : ICE21: Component: 'Docs6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2614) : error LGHT0204 : ICE21: Component: 'Docs7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2619) : error LGHT0204 : ICE21: Component: 'Docs8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2624) : error LGHT0204 : ICE21: Component: 'Docs9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2629) : error LGHT0204 : ICE21: Component: 'Docs10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2634) : error LGHT0204 : ICE21: Component: 'Docs11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2639) : error LGHT0204 : ICE21: Component: 'Docs12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2644) : error LGHT0204 : ICE21: Component: 'Docs13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2649) : error LGHT0204 : ICE21: Component: 'Docs14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2654) : error LGHT0204 : ICE21: Component: 'Docs15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2659) : error LGHT0204 : ICE21: Component: 'Docs16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2664) : error LGHT0204 : ICE21: Component: 'Docs17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2669) : error LGHT0204 : ICE21: Component: 'Docs18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2674) : error LGHT0204 : ICE21: Component: 'Docs19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2679) : error LGHT0204 : ICE21: Component: 'Docs20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2684) : error LGHT0204 : ICE21: Component: 'Docs21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2696) : error LGHT0204 : ICE21: Component: 'Filters1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2701) : error LGHT0204 : ICE21: Component: 'Filters2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2706) : error LGHT0204 : ICE21: Component: 'Filters3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2711) : error LGHT0204 : ICE21: Component: 'Filters4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2716) : error LGHT0204 : ICE21: Component: 'Filters5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2721) : error LGHT0204 : ICE21: Component: 'Filters6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2726) : error LGHT0204 : ICE21: Component: 'Filters7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2731) : error LGHT0204 : ICE21: Component: 'Filters8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2736) : error LGHT0204 : ICE21: Component: 'Filters9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2741) : error LGHT0204 : ICE21: Component: 'Filters10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2746) : error LGHT0204 : ICE21: Component: 'Filters11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2751) : error LGHT0204 : ICE21: Component: 'Filters12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2758) : error LGHT0204 : ICE21: Component: 'Lang87' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2763) : error LGHT0204 : ICE21: Component: 'Lang88' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2768) : error LGHT0204 : ICE21: Component: 'Lang89' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2773) : error LGHT0204 : ICE21: Component: 'Lang90' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2778) : error LGHT0204 : ICE21: Component: 'Lang91' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2783) : error LGHT0204 : ICE21: Component: 'Lang92' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2788) : error LGHT0204 : ICE21: Component: 'Lang93' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2793) : error LGHT0204 : ICE21: Component: 'Lang94' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2798) : error LGHT0204 : ICE21: Component: 'Lang95' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2803) : error LGHT0204 : ICE21: Component: 'Lang96' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2808) : error LGHT0204 : ICE21: Component: 'Lang97' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2813) : error LGHT0204 : ICE21: Component: 'Lang98' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2818) : error LGHT0204 : ICE21: Component: 'Lang99' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2823) : error LGHT0204 : ICE21: Component: 'Lang100' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2828) : error LGHT0204 : ICE21: Component: 'Lang101' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2833) : error LGHT0204 : ICE21: Component: 'Lang102' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2838) : error LGHT0204 : ICE21: Component: 'Lang103' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2843) : error LGHT0204 : ICE21: Component: 'Lang104' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2848) : error LGHT0204 : ICE21: Component: 'Lang105' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2853) : error LGHT0204 : ICE21: Component: 'Lang106' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2858) : error LGHT0204 : ICE21: Component: 'Lang107' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2863) : error LGHT0204 : ICE21: Component: 'Lang108' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2868) : error LGHT0204 : ICE21: Component: 'Lang109' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2873) : error LGHT0204 : ICE21: Component: 'Lang110' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2878) : error LGHT0204 : ICE21: Component: 'Lang111' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2883) : error LGHT0204 : ICE21: Component: 'Lang112' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2888) : error LGHT0204 : ICE21: Component: 'Lang113' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2893) : error LGHT0204 : ICE21: Component: 'Lang114' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2898) : error LGHT0204 : ICE21: Component: 'Lang115' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2903) : error LGHT0204 : ICE21: Component: 'Lang116' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2908) : error LGHT0204 : ICE21: Component: 'Lang117' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2913) : error LGHT0204 : ICE21: Component: 'Lang118' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2918) : error LGHT0204 : ICE21: Component: 'Lang119' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2923) : error LGHT0204 : ICE21: Component: 'Lang120' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2928) : error LGHT0204 : ICE21: Component: 'Lang121' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2933) : error LGHT0204 : ICE21: Component: 'Lang122' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2938) : error LGHT0204 : ICE21: Component: 'Lang123' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2943) : error LGHT0204 : ICE21: Component: 'Lang124' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2948) : error LGHT0204 : ICE21: Component: 'Lang125' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2953) : error LGHT0204 : ICE21: Component: 'Lang126' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2958) : error LGHT0204 : ICE21: Component: 'Lang127' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2963) : error LGHT0204 : ICE21: Component: 'Lang128' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2968) : error LGHT0204 : ICE21: Component: 'Lang129' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2973) : error LGHT0204 : ICE21: Component: 'Lang130' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2978) : error LGHT0204 : ICE21: Component: 'Lang131' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2983) : error LGHT0204 : ICE21: Component: 'Lang132' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2988) : error LGHT0204 : ICE21: Component: 'Lang133' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2993) : error LGHT0204 : ICE21: Component: 'Lang134' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(2998) : error LGHT0204 : ICE21: Component: 'Lang135' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3003) : error LGHT0204 : ICE21: Component: 'Lang136' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3008) : error LGHT0204 : ICE21: Component: 'Lang137' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3013) : error LGHT0204 : ICE21: Component: 'Lang138' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3018) : error LGHT0204 : ICE21: Component: 'Lang139' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3023) : error LGHT0204 : ICE21: Component: 'Lang140' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3028) : error LGHT0204 : ICE21: Component: 'Lang141' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3033) : error LGHT0204 : ICE21: Component: 'Lang142' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3038) : error LGHT0204 : ICE21: Component: 'Lang143' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3043) : error LGHT0204 : ICE21: Component: 'Lang144' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3048) : error LGHT0204 : ICE21: Component: 'Lang145' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3053) : error LGHT0204 : ICE21: Component: 'Lang146' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3058) : error LGHT0204 : ICE21: Component: 'Lang147' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3063) : error LGHT0204 : ICE21: Component: 'Lang148' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3068) : error LGHT0204 : ICE21: Component: 'Lang149' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3073) : error LGHT0204 : ICE21: Component: 'Lang150' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3078) : error LGHT0204 : ICE21: Component: 'Lang151' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3083) : error LGHT0204 : ICE21: Component: 'Lang152' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3088) : error LGHT0204 : ICE21: Component: 'Lang153' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3093) : error LGHT0204 : ICE21: Component: 'Lang154' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3098) : error LGHT0204 : ICE21: Component: 'Lang155' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3103) : error LGHT0204 : ICE21: Component: 'Lang156' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3108) : error LGHT0204 : ICE21: Component: 'Lang157' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3113) : error LGHT0204 : ICE21: Component: 'Lang158' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3118) : error LGHT0204 : ICE21: Component: 'Lang159' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3123) : error LGHT0204 : ICE21: Component: 'Lang160' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3128) : error LGHT0204 : ICE21: Component: 'Lang161' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3133) : error LGHT0204 : ICE21: Component: 'Lang162' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3138) : error LGHT0204 : ICE21: Component: 'Lang163' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3143) : error LGHT0204 : ICE21: Component: 'Lang164' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3148) : error LGHT0204 : ICE21: Component: 'Lang165' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3160) : error LGHT0204 : ICE21: Component: 'Languages1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3165) : error LGHT0204 : ICE21: Component: 'Languages2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3170) : error LGHT0204 : ICE21: Component: 'Languages3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3175) : error LGHT0204 : ICE21: Component: 'Languages4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3180) : error LGHT0204 : ICE21: Component: 'Languages5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3185) : error LGHT0204 : ICE21: Component: 'Languages6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3190) : error LGHT0204 : ICE21: Component: 'Languages7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3195) : error LGHT0204 : ICE21: Component: 'Languages8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3200) : error LGHT0204 : ICE21: Component: 'Languages9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3205) : error LGHT0204 : ICE21: Component: 'Languages10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3210) : error LGHT0204 : ICE21: Component: 'Languages11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3215) : error LGHT0204 : ICE21: Component: 'Languages12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3220) : error LGHT0204 : ICE21: Component: 'Languages13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3225) : error LGHT0204 : ICE21: Component: 'Languages14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3230) : error LGHT0204 : ICE21: Component: 'Languages15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3235) : error LGHT0204 : ICE21: Component: 'Languages16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3240) : error LGHT0204 : ICE21: Component: 'Languages17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3245) : error LGHT0204 : ICE21: Component: 'Languages18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3250) : error LGHT0204 : ICE21: Component: 'Languages19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3255) : error LGHT0204 : ICE21: Component: 'Languages20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3260) : error LGHT0204 : ICE21: Component: 'Languages21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3265) : error LGHT0204 : ICE21: Component: 'Languages22' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3270) : error LGHT0204 : ICE21: Component: 'Languages23' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3275) : error LGHT0204 : ICE21: Component: 'Languages24' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3280) : error LGHT0204 : ICE21: Component: 'Languages25' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3285) : error LGHT0204 : ICE21: Component: 'Languages26' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3290) : error LGHT0204 : ICE21: Component: 'Languages27' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3295) : error LGHT0204 : ICE21: Component: 'Languages28' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3300) : error LGHT0204 : ICE21: Component: 'Languages29' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3305) : error LGHT0204 : ICE21: Component: 'Languages30' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3317) : error LGHT0204 : ICE21: Component: 'MergePlugins1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3322) : error LGHT0204 : ICE21: Component: 'MergePlugins2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3327) : error LGHT0204 : ICE21: Component: 'MergePlugins3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3332) : error LGHT0204 : ICE21: Component: 'MergePlugins4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3337) : error LGHT0204 : ICE21: Component: 'MergePlugins5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3342) : error LGHT0204 : ICE21: Component: 'MergePlugins6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3347) : error LGHT0204 : ICE21: Component: 'MergePlugins7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3352) : error LGHT0204 : ICE21: Component: 'MergePlugins8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3357) : error LGHT0204 : ICE21: Component: 'MergePlugins9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3362) : error LGHT0204 : ICE21: Component: 'MergePlugins10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3367) : error LGHT0204 : ICE21: Component: 'MergePlugins11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3377) : error LGHT0204 : ICE21: Component: 'WinMerge1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3382) : error LGHT0204 : ICE21: Component: 'WinMerge2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3387) : error LGHT0204 : ICE21: Component: 'WinMerge3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3392) : error LGHT0204 : ICE21: Component: 'WinMerge4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3397) : error LGHT0204 : ICE21: Component: 'WinMerge5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3402) : error LGHT0204 : ICE21: Component: 'WinMerge6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3407) : error LGHT0204 : ICE21: Component: 'WinMerge7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3412) : error LGHT0204 : ICE21: Component: 'WinMerge8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3417) : error LGHT0204 : ICE21: Component: 'WinMerge9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3422) : error LGHT0204 : ICE21: Component: 'WinMerge10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3427) : error LGHT0204 : ICE21: Component: 'WinMerge11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3432) : error LGHT0204 : ICE21: Component: 'WinMerge12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3437) : error LGHT0204 : ICE21: Component: 'WinMerge13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3442) : error LGHT0204 : ICE21: Component: 'WinMerge14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3447) : error LGHT0204 : ICE21: Component: 'WinMerge15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3452) : error LGHT0204 : ICE21: Component: 'WinMerge16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3457) : error LGHT0204 : ICE21: Component: 'WinMerge17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3462) : error LGHT0204 : ICE21: Component: 'WinMerge18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3467) : error LGHT0204 : ICE21: Component: 'WinMerge19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3472) : error LGHT0204 : ICE21: Component: 'WinMerge20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3477) : error LGHT0204 : ICE21: Component: 'WinMerge21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3482) : error LGHT0204 : ICE21: Component: 'WinMerge22' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3487) : error LGHT0204 : ICE21: Component: 'WinMerge23' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3492) : error LGHT0204 : ICE21: Component: 'WinMerge24' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3497) : error LGHT0204 : ICE21: Component: 'WinMerge25' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3502) : error LGHT0204 : ICE21: Component: 'WinMerge26' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3507) : error LGHT0204 : ICE21: Component: 'WinMerge27' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3512) : error LGHT0204 : ICE21: Component: 'WinMerge28' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3517) : error LGHT0204 : ICE21: Component: 'WinMerge29' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3522) : error LGHT0204 : ICE21: Component: 'WinMerge30' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3527) : error LGHT0204 : ICE21: Component: 'WinMerge31' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3532) : error LGHT0204 : ICE21: Component: 'WinMerge32' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3537) : error LGHT0204 : ICE21: Component: 'WinMerge33' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3542) : error LGHT0204 : ICE21: Component: 'WinMerge34' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3547) : error LGHT0204 : ICE21: Component: 'WinMerge35' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3552) : error LGHT0204 : ICE21: Component: 'WinMerge36' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3557) : error LGHT0204 : ICE21: Component: 'WinMerge37' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3572) : error LGHT0204 : ICE21: Component: 'settings2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3588) : error LGHT0204 : ICE21: Component: 'images1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3593) : error LGHT0204 : ICE21: Component: 'images2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3598) : error LGHT0204 : ICE21: Component: 'images3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3603) : error LGHT0204 : ICE21: Component: 'images4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3617) : error LGHT0204 : ICE21: Component: 'Source1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3622) : error LGHT0204 : ICE21: Component: 'Source2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3627) : error LGHT0204 : ICE21: Component: 'Source3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3639) : error LGHT0204 : ICE21: Component: 'WinMergePortable1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3651) : error LGHT0204 : ICE21: Component: 'prepDeploy1' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3656) : error LGHT0204 : ICE21: Component: 'prepDeploy2' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3661) : error LGHT0204 : ICE21: Component: 'prepDeploy3' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3666) : error LGHT0204 : ICE21: Component: 'prepDeploy4' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3671) : error LGHT0204 : ICE21: Component: 'prepDeploy5' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3676) : error LGHT0204 : ICE21: Component: 'prepDeploy6' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3681) : error LGHT0204 : ICE21: Component: 'prepDeploy7' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3686) : error LGHT0204 : ICE21: Component: 'prepDeploy8' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3691) : error LGHT0204 : ICE21: Component: 'prepDeploy9' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3696) : error LGHT0204 : ICE21: Component: 'prepDeploy10' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3701) : error LGHT0204 : ICE21: Component: 'prepDeploy11' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3706) : error LGHT0204 : ICE21: Component: 'prepDeploy12' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3711) : error LGHT0204 : ICE21: Component: 'prepDeploy13' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3716) : error LGHT0204 : ICE21: Component: 'prepDeploy14' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3721) : error LGHT0204 : ICE21: Component: 'prepDeploy15' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3726) : error LGHT0204 : ICE21: Component: 'prepDeploy16' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3731) : error LGHT0204 : ICE21: Component: 'prepDeploy17' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3736) : error LGHT0204 : ICE21: Component: 'prepDeploy18' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3741) : error LGHT0204 : ICE21: Component: 'prepDeploy19' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3746) : error LGHT0204 : ICE21: Component: 'prepDeploy20' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3751) : error LGHT0204 : ICE21: Component: 'prepDeploy21' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3756) : error LGHT0204 : ICE21: Component: 'prepDeploy22' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3761) : error LGHT0204 : ICE21: Component: 'prepDeploy23' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3766) : error LGHT0204 : ICE21: Component: 'prepDeploy24' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3771) : error LGHT0204 : ICE21: Component: 'prepDeploy25' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3776) : error LGHT0204 : ICE21: Component: 'prepDeploy26' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3781) : error LGHT0204 : ICE21: Component: 'prepDeploy27' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3786) : error LGHT0204 : ICE21: Component: 'prepDeploy28' does not belong to any Feature.
[09:07:26][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3791) : error LGHT0204 : ICE21: Component: 'prepDeploy29' does not belong to any Feature.

@forki
Copy link
Member

forki commented Aug 26, 2015

I reactivated your commit, but I hope you can help me to get my stuff working with your changes.

@DigitalFlow
Copy link
Contributor Author

How about this?

let diffMerge = wixDir TRUE true (directoryInfo(bundledDir @@ "diffmerge"))
let icons = wixDir TRUE true (directoryInfo(bundledDir @@ "icons"))
let winMerge = wixDir TRUE true (directoryInfo(bundledDir @@ "WinMergePortable"))
let psPad = wixDir TRUE true (directoryInfo(bundledDir @@ "PsPad"))

let replacements = [
        "@build.number@",
            if isGitlabCI then "6.16.42." + buildVersion
            elif not isLocalBuild then buildVersion else "0.1.0.0"
        "@product.productcode@",System.Guid.NewGuid().ToString()
        "@HelpFiles@",getFilesAsWiXString helpFiles
        "@ScriptFiles@",getFilesAsWiXString scriptFiles
        "@gitnav@",wixDir TRUE false (directoryInfo(deployPrepDir))
        "@diffmerge@", diffMerge
        "@icons@", icons
        "@pspad@", psPad
        "@winmerge@", winMerge
        "@diffmergeComponents@", getComponentIdsFromWiXString diffMerge
        "@iconsComponents@", getComponentIdsFromWiXString icons
        "@pspadComponents@", getComponentIdsFromWiXString psPad
        "@winmergeComponents@", getComponentIdsFromWiXString winMerge]

I can't check if this covers everything, but it should get a lot better and we certainly will get it going ;)

It is very important, that every file is included in at least one feature. So when defining your files and directories in the node, make sure that all of them are referenced in your feature.

@forki
Copy link
Member

forki commented Aug 26, 2015

with the same change for @gitnav@ it makes light.exe happy. Now it fails on candle. ;-(

[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.
[11:38:04][Step 1/1] D:\Work\130c5a8c274056ec\setup\GitNav.Setup.wxs.template(3646) : error CNDL0005 : The Directory element contains an unexpected child element 'ComponentRef'.

@DigitalFlow
Copy link
Contributor Author

In your template you have

 </Directory>
          @gitnav@
          <Directory Id="HELPDIR" Name="Help">

Because of your own change, the component Ref is inserted. But you should leave this XML node as it is, for the rest, I suggest the following:

let diffMerge = wixDir TRUE true (directoryInfo(bundledDir @@ "diffmerge"))
let icons = wixDir TRUE true (directoryInfo(bundledDir @@ "icons"))
let winMerge = wixDir TRUE true (directoryInfo(bundledDir @@ "WinMergePortable"))
let psPad = wixDir TRUE true (directoryInfo(bundledDir @@ "PsPad"))
let gitNav = wixDir TRUE false (directoryInfo(deployPrepDir))

let replacements = [
        "@build.number@",
            if isGitlabCI then "6.16.42." + buildVersion
            elif not isLocalBuild then buildVersion else "0.1.0.0"
        "@product.productcode@",System.Guid.NewGuid().ToString()
        "@HelpFiles@",getFilesAsWiXString helpFiles
        "@ScriptFiles@",getFilesAsWiXString scriptFiles
        "@gitnav@", gitNav
        "@diffmerge@", diffMerge
        "@icons@", icons
        "@pspad@", psPad
        "@winmerge@", winMerge
        "@diffmergeComponents@", getComponentIdsFromWiXString diffMerge
        "@iconsComponents@", getComponentIdsFromWiXString icons
        "@pspadComponents@", getComponentIdsFromWiXString psPad
        "@winmergeComponents@", getComponentIdsFromWiXString winMerge
        "@gitNavComponents@", getComponentIdsFromWiXString gitNav]

and adding this to the XML:

 </Directory>    
    <Feature Id="Feature.Core"
                 Title="GitNav Core Components"
                 Description="GitNav"
                 Display="expand"
                 ConfigurableDirectory="GITNAVPATH"
                 Level="1"
                 Absent="disallow"
                 AllowAdvertise="no">
      <ComponentRef Id="Help"/>
      <ComponentRef Id="HelpStyles"/>
      <ComponentRef Id="Scripts"/>
      <ComponentRef Id="ProfileScript"/>
      <ComponentRef Id="prepDeploy"/>
      <ComponentRef Id="Microsoft.VC90.CRT"/>
      <ComponentRef Id="RegistryEntries" />
      <ComponentRef Id="Console2"/>
      <ComponentRef Id="Log2Console"/>
      @diffmergeComponents@
      @iconsComponents@
      @pspadComponents@
      @winmergeComponents@
      @gitNavComponents@
    </Feature>

@forki
Copy link
Member

forki commented Aug 26, 2015

miracle

it's green. it's green.
thanks so much!

@DigitalFlow
Copy link
Contributor Author

No Problem :)
In the last post of your XML the @gitnav@ tag was missing in the directories node, but I guess you added, it right?
Using the F# types for creating the nodes is fun too :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants