Setting up isolated COM for multiple projects.
Posted
by
Praneeth
on Stack Overflow
See other posts from Stack Overflow
or by Praneeth
Published on 2011-01-13T19:51:49Z
Indexed on
2011/01/13
19:53 UTC
Read the original article
Hit count: 236
My solution consists of multiple projects all of which out type class library except one whose output type is windows application. The application references all the other projects. I also have a COM component which is referenced by some of the projects and the application also.
I can setup the regfree COM by changing the Isolated property of the referenced COM component in visual studio to TRUE. The solution builds successfully and I can see the manifest file generated for that particular assembly or application.
Now, my question is that do I need to do this for all the projects which reference the COM component? If yes, then I know that i cannot set the Isolated property to TRUE on more than one project(gives a build error) so how do I workaround this?
I am relatively new to .net and don't know much regfree COM(i assume what i am doing IS regfree COM?). Any help I can get on this issue is greatly appreciated. Thanks.
I am currently using VS 2008.
© Stack Overflow or respective owner