安装自定义Visual Studio语言服务 [英] Installing a Custom Visual Studio Language Service

查看:149
本文介绍了安装自定义Visual Studio语言服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经按照非常有用的文章解决方案

在这里放置了风滚草徽章后,我设法找到了解决方案.人们可能会发现有用的几个重要方面.

首先需要一个PLK(程序包加载密钥).它可以在这里生成: http://msdn.microsoft.com/zh-CN/vstudio/cc655795.aspx 确保输入的所有信息正确无误,并且已输入dll的程序集.

通过将解决方案的rsx文件(通常作为项104)添加到解决方案的rsx文件中,然后在代码中的ProvideLoadKey属性中匹配该项号来安装PLK.

接下来测试PLK有点麻烦.提示可以在这里找到: http://msdn .microsoft.com/en-us/library/bb164677%28v = VS.90%29.aspx 我强烈建议您从一开始就首先将/noVSIP开关与实验性配置单元一起使用.我发现使用/log并没有真正的帮助,安装包并仍然遇到PLK问题后,最好使用Package Load Analyzer.

可以使用以下命令行对软件包负载分析器进行更详细的描述: devenv/command tools.analyzepackage/analyzeargs {您的GUID} analyticspkg.txt

一旦您满意并准备好进行部署,那么MSDN上的教程似乎比应该埋葬的要深得多.Writing Your First Visual Studio Language Service. I've got my grammar working great, some simple goto cases up and running, and text coloring. I've done my testing both in the Irony GrammarExplorer and the Visual Studio Experimental Hive, and I feel I'm ready to use it normally in visual studio and deploy it out to a few other programmers for some early testing and feedback.

The problem is I don't know how to install the language service. I have this nice little DLL that works in the Experimental Hive, but no clue how to have it running whenever I start up visual studio. I've looked all over the internet and found that particular step is glossed over everywhere I look. Maybe I'm just blind, or it's much easier than I think it to be, but I'd really appreciate it if someone could give me detailed steps on how to install my language service.

Thanks in advance!

解决方案

After getting the Tumbleweed badge on here I managed to track down the solution. There were a couple important bits people might find useful.

First off a PLK (Package Load Key) is needed. It can be generated here: http://msdn.microsoft.com/en-us/vstudio/cc655795.aspx Be sure to make sure that all the information you enter is correct, and is entered into the Assembly for the dll.

The PLK is installed by adding to the rsx file for the solution, usually as item 104, and then matching that item number in the ProvideLoadKey attribute in your code.

Next testing the PLK is a bit of a hassle. Tips can be found here: http://msdn.microsoft.com/en-us/library/bb164677%28v=VS.90%29.aspx I highly recommend first using the /noVSIP switch with the experimental hive right from the start. I found using /log doesn't really help, it's much better to use the Package Load Analyzer once you've installed your package and are still having PLK issues.

A more detailed description from the package load analyzer can be done with this command line: devenv /command tools.analyzepackage /analyzeargs {your GUID} analyzepkg.txt

Once you're satisfied and ready to deploy, there is a tutorial that seemed more buried than it should be over at MSDN http://msdn.microsoft.com/en-us/library/bb458038%28VS.90%29.aspx

One thing that I found was curious with the RegPkg tool found in the VS SDK bin directory was that it would cause my package to load fine in the development solution it existed in, but would not not load in other solutions. There appears to be an extra step to call devenv /setup which I was missing, and this is taken care of in the deploy tutorial I provided in the previous paragraph through the use of a Custom Action.

Anyway I hope this helps someone running through the same process as me.

这篇关于安装自定义Visual Studio语言服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆