如何-> Visual Studio 加载项管理器
如何在 Visual Studio 中使用加载项管理器?以下是问题和解决方案。
我想添加此 SmartPaster 插件 并需要获取插件中列出的这 3 个文件经理对话框?
- SmartPaster2010.AddIn
- SmartPaster2010.dll
- SmartPaster2010.xml
编辑: Microsoft 加载项注册 说:
要在另一台计算机上安装加载项,.addin 文件必须是 放置在 Visual Studio 检查加载项的位置。这些 位置列在“选项”对话框的“环境”中 节点,位于“加载项/宏安全性”页面上。
我转到“工具”>“选项>环境>加载项/宏安全性,检查了一些路径,将加载项文件放入其中几个目录中,重新启动 VS2010 但仍然没有运气!
How do I use the Add-In Manager in Visual Studio? Here is the problem and solution.
I want to add this SmartPaster addin and need to get these 3 files listed in the Add-In Manager dialog?
- SmartPaster2010.AddIn
- SmartPaster2010.dll
- SmartPaster2010.xml
Edit: Microsoft Add-In Registration says:
To install the add-in on another computer, the .addin file must be
placed in a location where Visual Studio checks for add-ins. These
locations are listed in the Options dialog box, in the Environment
node, on the Add-in/Macros Security page.
I went to Tools > Options > Environment > Add-In/Macro Security, checked some paths put the AddIn files in a couple of these directories, restart VS2010 but still no luck!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建一个名为“C:\VisualStudioPlugins”的文件夹,
打开 Visual Studio >工具菜单>选项>环境>插件/宏安全>添加路径“C:\VisualStudioPlugins”
重新启动 Visual Studio,就会列出该加载项!
ps 在提出问题之前我并不知道答案,希望它对 .Net 社区有所帮助。
Make a folder called "C:\VisualStudioPlugins"
Open up Visual Studio > Tools Menu > Options > Environment > Add-In/Macro Security > Add the path "C:\VisualStudioPlugins"
Restart Visual Studio and the add-in is listed!
ps I didn't know the answer before I asked the question and hope it helps the .Net community.
我有一个类似的问题,但我试图使用为 VS 2008 制作的 VS Addin。
即使添加了新文件夹,它也没有在 vs 2010 中拾取它。
通过制作 vs 的副本addin,并编辑 .addin 文件,将 9.0 更改为 - 你猜对了... 10.0... 它有效:) 哈哈
I had a similar issue, but it was that I was trying to use a VS Addin that was made for VS 2008.
Even with the new folder added, it wasn't picking it up in vs 2010.
By making a copy of the vs addin, and editing the .addin file, changing 9.0 to - you guessed it... 10.0... it works :) lol
该产品没有附带安装说明?
听起来你可以将文件放入
%DOCUMENTS%/Visual Studio 2010/Add-Ins
(其中%DOCUMENTS%
是你的文档文件夹,VS 喜欢在其中默认情况下推送东西)并重新启动 VS。但这只是一个猜测。The product didn't come with installation instructions?
It sounds like you can probably just put the files into
%DOCUMENTS%/Visual Studio 2010/Add-Ins
(where%DOCUMENTS%
is your documents folder, where VS likes to shove stuff by default) and reboot VS. But that's just a guess.