Re: [WiX-users] : Unresolved reference to symbol 'Dialog:CancelDlg' in section 'Fragment:'

2009-06-19 Thread Jirong Hu
Yes, you are right. I was porting wix2 to wix3. Thanks a lot. Jirong -Original Message- From: Bob Arnson [mailto:b...@joyofsetup.com] Sent: Thursday, June 18, 2009 3:49 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] : Unresolved reference to symbol

[WiX-users] : Unresolved reference to symbol 'Dialog:CancelDlg' in section 'Fragment:'

2009-06-18 Thread Jirong Hu
It seems can't find standard UI extention while I run this task from CruiseControl.Net. But there is no problem while run it from command line. Any idea what's wrong? Thanks Jirong Target Name=Compile Wxs ItemGroup Compile Include=$(OutputDirectory)\*.wxs /

Re: [WiX-users] : Unresolved reference to symbol 'Dialog:CancelDlg' in section 'Fragment:'

2009-06-18 Thread Bob Arnson
Jirong Hu wrote: Candle SourceFiles=@(Compile) OutputFile=$(IntermediateOutputPath)\ ToolPath=$(WixPath) Extensions=$(WixPath)\WixIIsExtension.dll;$(WixPath)\WixUtilExtension.dll / You need to include WixUIExtension as well. That's where the WixUI dialogs are stored. --