link it with the wixui.wixlib

>light file.wixobj wixui.wixlib -loc whatever.loc -out something.msi
 


----- Original Message ----
From: moonwalkercs <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Sent: Saturday, April 14, 2007 4:45:13 AM
Subject: [WiX-users] Unresolved UIRef


Hi

I'm using WIX 3.0 and trying to incorporate the Mondo UI into my installer. 
When I do this however I get the following error: Error    5    Unresolved
reference to symbol 'WixUI:WixUI_Mondo' in section 'Product:{......}

Here's my .wxs file:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
    <Product Id="...." Name="My First App" Language="1033" Version="1.0.0.0"
Manufacturer="Caleb" UpgradeCode="......">
            <Package Description="Help Me" Comments="Help Me Again"
InstallerVersion="200" Compressed="yes" />
        <Media Id="1" Cabinet="MyApp.cab" EmbedCab="yes" />

        <Directory Id="TARGETDIR" Name="SourceDir">
            <Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs">
                <Directory Id="MyProgramsFolder" Name='MyApp' LongName="My App" 
/>
            </Directory>
            <Directory Id="DesktopFolder" Name="Desktop" />
            <Directory Id="ProgramFilesFolder">
                <Directory Id="INSTALLLOCATION" Name="MyAppDir" LongName="My 
Application
Directoy">

                    <Component Id="ProductComponent" Guid="....">
                        <File Id="MyAppFile" Name="MyApp.exe" 
                              src="C:\Documents and Settings\csandfort\My 
Documents\Visual Studio
2005\Projects\WIX\MySetup\MyApp\bin\Debug\MyApp.exe" DiskId="1">
                        </File>
                        <CreateFolder/>
                        <RemoveFolder Id='ProgramMenuDir' On='uninstall' />
                    </Component>
                </Directory>
            </Directory>
        </Directory>

        <DirectoryRef Id="MyProgramsFolder">
            <Component Id="MyShortcut" Guid="......" DiskId="1">
                <RegistryValue Root="HKCU" Key="Software\Caleb\Q" 
Name="Installed"
Type="integer" Value="1"/>
                <Shortcut Id="My_Desktop_Shortcut" Name="MyAppSc" 
Description="My
Applicaton Shorcut" Directory="DesktopFolder" Target="[MYAPPEXE]"
Icon="MyIcon.ico"/>
                <Shortcut Id="My_StartMenu_Shortcut" Name="MyAppSc" 
Description="My
Applicaton Shorcut" Directory="MyProgramsFolder" Target="[MYAPPEXE]"
Icon="MyIcon.ico"/>
                <RemoveFolder Id="MyProgramsFolder" On="uninstall"/>
            </Component>
        </DirectoryRef>

        <Feature Id="ProductFeature" Title="My App" Level="1" Display="expand"
ConfigurableDirectory="INSTALLLOCATION">
            <ComponentRef Id="ProductComponent" />
            <ComponentRef Id="MyShortcut" />
        </Feature>

        <Property Id="MYAPPEXE" Secure="yes">
            <DirectorySearch Id="MyHomeDirectory"
Path="[ProgramFilesFolder]\MyAppSDir">
                <FileSearch Id="MyAppExe" Name="MyApp.exe" MinVersion="1.0.0.0" 
/>
            </DirectorySearch>
        </Property>
        <Icon Id="MyIcon.ico" SourceFile="C:\Documents and Settings\csandfort\My
Documents\Visual Studio 2005\Projects\WIX\MySetup\MyApp\MyIcon.ico" />
        <UIRef Id="WixUI_Mondo"/>
    </Product>
</Wix>
-- 
View this message in context: 
http://www.nabble.com/Unresolved-UIRef-tf3574381.html#a9988049
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/wix-users

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to