top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to Install an Assembly into the Global Assembly Cache?

+4 votes
328 views
How to Install an Assembly into the Global Assembly Cache?
posted Feb 18, 2014 by Merry

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes
 
Best answer

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.

gacutil -i hello.dll

answer Feb 18, 2014 by Atul Mishra
Similar Questions
+7 votes

How to create your own controls?
Basic steps will be helpful.

+2 votes

Is there any VB.NET equivalent to the C# var keyword?

+2 votes

Why is it preferred to not use finalize for clean up?

...