We currently have "gacutil /i $(TargetPath)" as an external tool in visual studio and it works fine for gac'n a single project.
I want to be able to select multiple projects and gac them so I put together a batch script to test.
set randomfile=%random%
echo %1 %2 %3 > %randomfile%
gacutil.exe /f /il %randomfile%
When I test it from the command line it looks like it should work. Then when I hook it up as "MultiGac.bat $(TargetPath)" and select multiple projects and try it don't work.
Has anybody written any tools to accomplish such as tast either with a AddIn or external tool? How about using regsvcs as well?
Thanks