Hi friends
How do you install assembly to the Global Assembly Cache?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jan 23, 2012, 12:48 AM
To install a strong-named assembly into the global assembly cache using the Global Assembly Cache tool (Gacutil.exe)
At the command prompt, type the following command:
gacutil –I
In this command, assembly name is the name of the assembly to install in the global assembly cache.
The following example installs an assembly with the file name hello.dll into the global assembly cache.
example :gacutil -i hello.dll
hope this help.
Satyapriya NayakPosted Jan 22, 2012, 12:51 AM
Please refer the below link
http://support.microsoft.com/kb/815808
http://www.codeproject.com/Articles/4352/Demystifying-the-NET-Global-Assembly-Cache
Thanks