Register your dll’s to GAC with Visual Studio IDE
05/03/2010 4 Comments
In this article we will create an external tool for registering our dlls to GAC .
1) Click in your VS.IDE menu Tools -> External Tools…
2) Click to Add button
Title = Register GAC
Command = C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\gacutil.exe
Arguments = -i $(TargetPath)
3) Make checked “Use Output window” for results
4) Click OK .
Now you can use your new external tool in your IDE’s -> Tools Menu…
Some tools save time or not ? bye now…


nice one
In Windows 2008
Command = C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x64\ gacutil.exe
Very nice. You should add the remove from GAC utility. pretty cool
To uninstall from GAC use;
-u $(TargetName)