创建 Visual Studio 解决方案模板 - 多个项目
我被困在这个用于创建多项目视觉工作室模板的教程上。我特别陷入这一行:
选择要包含在模板中的文件和文件夹,右键单击所选内容,单击“发送到”,然后单击“压缩”文件夹。文件和文件夹被压缩为 .zip 文件。
我执行了以下步骤:
- 创建 2 个项目。 (MyProj.Web 和 MyProj.Service)
- 在 MyProj.Web 中引用 MyProj.Service。
- 两者都导出。它们现在位于
.zip
文件中。
从这里我该怎么办?
我的意图是:创建一些 dll 所在的解决方案文件夹(DI、单元测试框架等)。引用这些dll。其他项目中的参考项目。重命名部分项目。例如。能够将 {MyProj}.Service
替换为 NewName.Service
I'm stuck on this tutorial for creating a multi-project visual studio template. I'm specifically stuck on this line:
Select the files and folders to include in your template, right-click the selection, click Send To, and then click Compressed (zipped) Folder. The files and folders are compressed into a .zip file.
I did the following steps:
- Create 2 projects. (MyProj.Web and MyProj.Service)
- Reference MyProj.Service in MyProj.Web.
- Export both. They are now in a
.zip
file.
What do I do from here?
My intentions are: Make solution folders where some dlls will be (DI, unit testing frameworks, etc). Have these dlls referenced. Reference projects in other projects. Rename part of the projects. For eg. the ability to replace {MyProj}.Service
with NewName.Service
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其他部分包括制作 .vstemplate xml 文件并将 zip 放入 ProjectTemplates 中。
根据文章:
然后,可以从
File
> 获取 Visual Studio 模板。新项目
。如果为单个项目创建模板,请将其放置在 \ItemTemplates 文件夹中,以便从解决方案资源管理器的“添加新项目”上下文菜单中使用它。The other parts includes making the .vstemplate xml file and placing the zip in the ProjectTemplates.
Per the article:
The Visual Studio template will then be available from
File
>New Project
. If making a template for a single item, place it in the \ItemTemplates folder instead to make it available from theAdd New Item
context menu in Solution Explorer.