如何调试和部署我的类库(实际上是 VSX 扩展)?
类库是一个 Microsoft Studio 扩展,它通过在模板文件上保存运行自定义工具来生成一个文件,遵循我从 Microsoft 找到的此示例中的模块: http://code.msdn.microsoft.com/SingleFileGenerator/Release/ProjectReleases.aspx?ReleaseId=4138。
我不知道如何调试、构建或部署这个对象,以便我可以在 Microsoft Studio 2010 中测试它。如果您可以帮助我在 VSX 实例中进行类库调试,请告诉我。我还需要编译并提供此扩展的交付方法。
谢谢你!
The Class Library is an Microsoft Studio extension that generates a file from saving running a custom tool on a template file, following the module from this example I found from Microsoft: http://code.msdn.microsoft.com/SingleFileGenerator/Release/ProjectReleases.aspx?ReleaseId=4138.
I can not figure out how I'm gonna debug, build, or deploy this object so I can test it in Microsoft Studio 2010. If you can help me get my class library debugging inside the VSX instance let me know. I will also need to compile and have a delivery method for this extension.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的解决方案是使用 Visual Basic -> 下的模板创建一个新项目。可扩展性-> Visual Studio Package,然后将现有代码移入其中。从模板生成的项目将自动设置为在实验实例中进行调试。
The simplest solution would be to create a new project using the template under Visual Basic -> Extensibility -> Visual Studio Package and then move your existing code into that. The project produced from the template will be automatically set up for debugging in the Experimental Instance.