Re: [WiX-users] Question about using XmlFile (WixUtilExtension.dll in general, actually)

2010-08-26 Thread James Kessler
Are you referencing the dll in your Visual Studio project? On Thu, Aug 26, 2010 at 3:29 PM, Dave DaveLists wrote: > Thanks for the response Chad. I do indeed have the xmlns:util setup at > the top of my WIX source file. Do you use WIX 3.0 or 3.5? We moved to > Visual Studio 2010 with WIX 3.5, b

Re: [WiX-users] QuietExec in CA

2010-07-27 Thread James Kessler
ot; on the > QuietExec() declaration. I'm not sure if that is a bad enough bug to spin a > new build, but it should be documented so that others will know the > workaround. > > -Original Message- > From: James Kessler [mailto:kessl...@gmail.com] > Sent: Tuesd

Re: [WiX-users] QuietExec in CA

2010-07-27 Thread James Kessler
Using WiX build 3.0.5419.0 and whatever wcautil.lib is included with that package. On Tue, Jul 27, 2010 at 11:45 AM, Blair wrote: > Which build of WiX are you using? Which wcautil lib are you linking with? > > -Original Message- > From: James Kessler [mailto:kessl...@gmail

Re: [WiX-users] QuietExec in CA

2010-07-27 Thread James Kessler
I mean the QuietExec() function which is part of wcautil.lib. If I create a new C++ custom action with hr = QuietExec(pwzCommand, dwTimeout); The compiler returns "unresolved external symbol _QuietExec". QuietExec is defined in wcautil.h and I'm successfully using other functions in the wcautil

[WiX-users] QuietExec in CA

2010-07-26 Thread James Kessler
Hi, I'm getting the following build error when I try and use QuietExec in a C++ custom action: "error LNK2001: unresolved external symbol _QuietExec" I'm using WiX 3.0, dutil.lib and wcautil.lib are included my linker input. What am I missing? Thanks, James --