您好 我有自定义工具为我们使用的代码生成包装类。 我注册了Dll(使用regasm / codebase),可以看到注册表中的密钥。 但VS说“在这个系统上找不到自定义工具”。 这有什么问题?我不知道原因,有人可以指导我吗?
答案 0 :(得分:1)
取自Dimaka'blog:Install Custom Tool for VS。
你能证实你采取了所有这些步骤吗?
运行Visual Studio命令提示符
在那里运行命令(VisualStudio.CodeGeneration.dll - 使用我的自定义工具进行汇编):
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
有时,Visual Studio需要运行'devenv / setup'命令来刷新IDE。