Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-22 Thread John Ludlow
) appears to be caused by making an explicit reference to the wixlib that the extension contains along with the extension (causing double references). Date: Wed, 10 Jul 2013 13:57:00 -0700 From: nickra...@hotmail.com To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Duplicate

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-11 Thread John Ludlow
reference to the wixlib that the extension contains along with the extension (causing double references). Date: Wed, 10 Jul 2013 13:57:00 -0700 From: nickra...@hotmail.com To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Duplicate symbol when using

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread Blair Murri
A WixExtension used in the way you describe usually supplies three things: a CompilerExtension (to parse your new elements and attributes), a Table definition (comes from a tables.xml-style file with the definitions of the tables unique to your extension), and a binary-wixlib (containing your

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread John Ludlow
Hi Blair, Ok, does that mean I've encountered an error in the book, then? The book suggests adding the wixlib to the extension, and I've done that (means I should only have to reference the extension, not the wixlib, right?). However, the sample code in the book does not come with a test install

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread Blair Murri
and end up in the table validation metadata. Blair From: john.ludlow...@gmail.com Date: Wed, 10 Jul 2013 15:20:56 +0100 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow Hi Blair, Ok, does that mean

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread John Ludlow
-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow Hi Blair, Ok, does that mean I've encountered an error in the book, then? The book suggests adding the wixlib to the extension, and I've done that (means I should only have to reference the extension

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread Nick Ramirez
You should be able to download the example for that chapter at the Packt publishers (packtpub.com) site. On the page that shows the details about the book, click the tab that says Support and there ought to be a Code Downloads link. -- View this message in context:

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread John Ludlow
Yup, did that - that's how I know there's no test installer for it. When I removed that line, the install compiled but without the action. I'll add a test install to the sample, and see what I get. I just haven't had time to do that today, unfortunately. On 10 July 2013 17:47, Nick Ramirez

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread Nick Ramirez
Okay, I maybe wasn't fully understanding the problem. :) So, you're saying that you want to use your extension in another WIXLIB (unrelated to the WIXLIB you used to build your extension)...but when you try that, but don't reference the extension in your Setup project too, you get the error Cannot

Re: [WiX-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow

2013-07-10 Thread Blair Murri
-users] Duplicate symbol when using CompilerCore.CreateWixSimpleReferenceRow Okay, I maybe wasn't fully understanding the problem. :) So, you're saying that you want to use your extension in another WIXLIB (unrelated to the WIXLIB you used to build your extension)...but when you try