VS 2008 Custom Tool Problem
Hi I have custom tool for Generating a Wrapper class for cod开发者_开发技巧e that we use. I registered the Dll (using regasm /codebase) and can see key in registry. But VS says "cannot find custom tool on this system". What is wrong with it ?i dont know the reason,can anyone guide me on this?
Taken from Dimaka'blog : Install Custom Tool for VS.
Can you confirm you took all thses steps ?
Run Visual Studio Command Prompt
Run the commands there (VisualStudio.CodeGeneration.dll – assembly with my custom tools):
RegAsm.exe C:..full..path.here..\VisualStudio.CodeGeneration.dll /unregister
GacUtil.exe /u VisualStudio.CodeGeneration
RegAsm.exe C:..full..path.here..\VisualStudio.CodeGeneration.dll
GacUtil.exe /i C:..full..path.here..\VisualStudio.CodeGeneration.dll
Sometimes Visual Studio requires to run ‘devenv /setup’ command to refresh IDE.
精彩评论