有没有办法(或者有人能找到方法)将IronScheme导入VS2010?我已经看过这个问题了,我已尽我所能 - 我甚至编辑了所涉及的二进制文件以更改版本号。我的问题:有没有人有解决方案将IronScheme安装到VisualStudio 2010中?目前,the directions to install it into VS2008跟随VS2010不起作用。提前致谢:)
更新1 :我想我应该发布当我尝试按照命令行安装说明时收到的错误:
C:\Program Files\IronScheme>RegPkg.exe /codebase "C:\Program Files\IronScheme\IronScheme.VisualStudio.dll"
运行之后,我收到Windows 7弹出错误:
RegPkg.exe已停止工作 - Windows正在检查解决方案 问题......
当我点击它时,它在控制台上给我这个错误:
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualStudio.Shell.9.0, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
File name: 'Microsoft.VisualStudio.Shell.9.0, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a'
at Microsoft.VisualStudio.Tools.RegPkg.Main(String[] arguments)
WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
答案 0 :(得分:6)
我写了VS2008插件。
当VS2010时,整个API再次发生变化,如果您曾经使用过VS SDK API,您将会知道它是一个迷宫。我只是觉得不再努力了。
我有很多很棒的想法,但对于我的生活,我甚至无法想出简单的东西。
如果有人想从VS2008实际移植我的代码,我将不胜感激。如果你比我更熟悉API,那应该不会太难。
VS2008插件的源代码目前不适用于公众。如果有人认真的话,请告诉我,以便我可以为它创建一个github(或类似的)回购。
<强>更新强>
创建了github repo。代码与我分发的现有DLL不同;它包含我正在尝试的各种半工作思路。
更新2:
Here你去:)非常基本,但适用于VS2010和VS11(也应该适用于Express版本)。源位于上述github repo的vs11
分支中。它只是VS2008插件的一个子集,因为某些功能似乎因为位腐烂而破坏或损坏。
更新3:
如果只安装了VS2010,似乎VS2010插件失败了。将要调查。如果安装了VS2010和VS11,则工作正常。 FIXED:)
答案 1 :(得分:1)