部署 DSL 时如何包含 ProjectItem?

发布于 2024-08-10 22:34:02 字数 110 浏览 7 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹梦 2024-08-17 22:34:02

这是 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'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文