部署 DSL 时如何包含 ProjectItem?
我正在使用 Visual Studio 2010 Beta 2,我想将完成的 DSL 与生成的 ProjectItem 一起打包和部署。我可以看到一切都已正确编译。我有 VSIX 文件,但不包括压缩项目项。
I am using Visual Studio 2010 Beta 2, I want to package and deploy my completed DSL along with the generated ProjectItem. I can see everything has been compiled correctly. I have my VSIX file but that does not include the Zipped Project Item.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Visual Studio Beta 2 的一个错误,
我找到了解决方法,方法是在 csproj 中添加一些 guid
{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
并手动编辑 vsixmanifest添加
ItemTemplates
我创建了一个名为 ItemTemplates 的文件夹,然后将生成的项目项 Zip 添加到该文件夹中,然后将 Zip 设置为内容并将 IncludeInVSIX 属性更改为“True”
This is a bug with Visual Studio Beta 2
I have found a workaround by adding some guids
{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
into the csproj and manually editing the vsixmanifest to add
ItemTemplates
I created a folder called ItemTemplates and then added the generated project item Zip into the folder , I then set the Zip as Content and changed the IncludeInVSIX property to 'True'