Re: [WiX-users] Managing dependencies to preprocessor extensions

2014-02-10 Thread impy
Hi, any news on this issue? I'm having the same problem. Regards -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Managing-dependencies-to-preprocessor-extensions-tp7546435p7592508.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Managing dependencies to preprocessor extensions

2014-02-10 Thread impy
I found out a solution. Just load manually the needed assembly (i.e My.Assembly.dll) in the extension constructor: Assembly.Load(My.Assembly); I've placed the assembly in the same location as the Extension.dll and it worked! Regards -- View this message in context:

[WiX-users] Managing dependencies to preprocessor extensions

2012-05-10 Thread Morten Lemvigh
I have written a preprocessor extension that has a dependency to another assembly. When I try to build a setup project using that extension, I get an error saying: In the preprocessor extension that handles prefix 'somePrefix' while trying to call function 'someFunction' and exception has

Re: [WiX-users] Managing dependencies to preprocessor extensions

2012-05-10 Thread Simon Dahlbacka
The name in the error message and the name of the dll is spelled differently, can it be as simple as that? /Simon On Thu, May 10, 2012 at 3:00 PM, Morten Lemvigh morten.lemv...@novasoftware.se wrote: I have written a preprocessor extension that has a dependency to another assembly. When I

Re: [WiX-users] Managing dependencies to preprocessor extensions

2012-05-10 Thread Morten Lemvigh
On 10-05-2012 14:31, Simon Dahlbacka wrote: The name in the error message and the name of the dll is spelled differently, can it be as simple as that? Sorry, that is just a typo I introduced when replacing the original assembly name. The names are the same in the two places. /Morten

Re: [WiX-users] Managing dependencies to preprocessor extensions

2012-05-10 Thread Morten Lemvigh
On 10-05-2012 14:00, Morten Lemvigh wrote: I have written a preprocessor extension that has a dependency to another assembly. When I try to build a setup project using that extension, I get an error saying: In the preprocessor extension that handles prefix 'somePrefix' while trying to call