up vote 2 down vote favorite
share [g+] share [fb]

Is there anyway to programmatically add a strong named assembly to the GAC using C# code ?

Thanks

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

This Microsoft Support article, How to install an assembly into the Global Assembly Cache in Visual C#, should explain all you need to know.

This is typically a task performed by the installer, so I'm not sure why you'd want to do it from within a .NET program (unless I've misunderstood your question). However, you can simply use the System.Diagnostics.Process class to run all the necessary programs as an installer might.

link|improve this answer
Ok I will use the gacutil utility to add the assemblies to the Gac .. I thought there might be able to use an API to add an assembly to the GAC .. Thanks – GX. Aug 12 '09 at 11:44
No problem. And yeah, I very much doubt there's a library/API to do this for you. The task is simple enough to use the command-line tools however. – Noldorin Aug 12 '09 at 11:45
To clarify, will an installer (produced by VS) automatically install my srongly named assemblies to the GAC? – Tom Wright Jul 12 '10 at 18:36
feedback

The Global Assembly Cache is configured through a COM-like interface(http://support.microsoft.com/default.aspx?scid=kb;en-us;317540).

For all questions about the GAC, Jungfen Zhang's blog is the source of choice. http://blogs.msdn.com/junfeng/articles/229648.aspx
http://blogs.msdn.com/junfeng/articles/229649.aspx

For more information, search for "managed GAC API".

Gacutil.exe is only for development purposes and should not be used to install production assemblies into the global assembly cache.

[Microsoft Installer] is the recommended and most common way to add assemblies to the global assembly cache. The installer provides reference counting of assemblies in the global assembly cache, plus other benefits.

link|improve this answer
feedback

just call gacutil command

gacutil /i mydll.dll
link|improve this answer
Why the downvote? – TcKs Aug 12 '09 at 11:36
downvoter please leave comment – ArsenMkrt Aug 12 '09 at 11:37
Didn't downvote, but it appears that you haven't given enough information to answer the question. – JoshJordan Aug 12 '09 at 11:39
gacutil is a SDK command that may not be expected to be available on a user's machine – user33675 Aug 12 '09 at 11:44
I can probably pack it as a resource .. extract it and run it .. correct ? – GX. Aug 12 '09 at 11:45
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.