Re: Problem with DLL's built on Windows with VS2005. R6034

vhermecz <[email protected]> Sat, 19 Sep 2009 16:56:37 -0700 (PDT)
Newsgroups gmane.comp.mozilla.devel.directory
Organization http://groups.google.com
Message-ID <[email protected]>
Ok, manifest part was a bit lame question, I solved it.
Copying the manifest file next to the exe was not enough.
For resolving the RTE the manifest has to be added to the dll with
mt.exe
Like:
mt.exe -outputresource:Assembly.dll;#2 -manifest Assembly.dll.manifest
(thanks to George Mileka at
http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/9fbc9292-11b8-4ee4-94a4-5223546df280)

vhermecz