vote up 1 vote down star

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

flag

51% accept rate
What doesn't work about it? Can the file be found but it just doesn't do the install? – Robert C. Barth Jan 9 at 23:31

2 Answers

vote up 1 vote down check

Had to write an Add In that scanned all projects an gac'd and reg'd them.

link|flag
vote up 1 vote down

Environment variables inside batch files should use double % as prefix:

for %%i in (*.dll) do gacutil.exe /f /il %%i
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.