2013-08-14 2 views
5

환경 : Win7 + VS2012 + Wix3.7.참조 WixUI 오류

컴파일해야 오류 : 나는 reason.Who가 나를 도울 수 찾을 수 없습니다

<?xml version="1.0" encoding="UTF-8"?> 
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 
    <Product Id="{9E327731-0EAC-4A02-9C3C-9C136ACCE05B}" Name="SetupProject2" Language="1033" Version="1.1.1.1" Manufacturer="Anser" UpgradeCode="61eb40a6-21d9-4f23-9c9e-078b98707371"> 
    <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> 

    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> 
    <MediaTemplate /> 
    <Feature Id="ProductFeature" Title="SetupProject2" Level="1"> 
     <ComponentGroupRef Id="ProductComponents" /> 
    </Feature> 
    <Property Id="WIXUI_INSTALLDIR">INSTALLDIR</Property> 
    <UIRef Id="WixUI_InstallDir"/> 
    </Product> 

    <Fragment> 
    <Directory Id="TARGETDIR" Name="SourceDir"> 
     <Directory Id="ProgramFilesFolder"> 
     <Directory Id="INSTALLFOLDER" Name="SetupProject2" /> 
     </Directory> 
    </Directory> 
    </Fragment> 

    <Fragment> 
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> 
     <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. --> 
     <!-- <Component Id="ProductComponent"> --> 
     <!-- TODO: Insert files, registry keys, and other resources here. --> 
     <!-- </Component> --> 
     <Component Id="ProductComponent" DiskId="1" Guid="{65F464D6-BC0B-4679-9546-CF8B6CFCE184}">  
     <File Name='test.exe' Source="test.exe" /> 
     </Component> 
    </ComponentGroup> 
    </Fragment> 
</Wix> 

:

Unresolved reference to symbol 'WixUI:WixUI_InstallDir' in section 'Product:{9E327731-0EAC-4A02-9C3C-9C136ACCE05B}'

코드는 다음과입니까?

+0

가능한 중복 [WiX 3 설치 프로그램에 UI를 추가하는 방법?] (http://stackoverflow.com/questions/596919/how-to-add-a-ui-to-a-wix- 3-installer) –

답변

12

참조 WixUIExtension.dll 프로젝트에 있습니다.

다음 사이트의 비슷한 질문을 참조하십시오. How to add a UI to a WiX 3 installer?

+3

당신은 WixUIExtension.dll을 의미합니까? WxExtension.dll이 없습니다. –

+0

도구 세트가 설치되어 있다고 가정하면, 다음 위치에 있습니다 : % PROGRAMFILES (X86) % \ WiX Toolset v3.11 \ bin \ –