Register your dll’s to GAC with Visual Studio IDE
05/03/2010 Leave a comment
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…