创建 Visual Studio 解决方案模板 - 多个项目

发布于 2024-10-16 01:48:04 字数 536 浏览 1 评论 0原文

我被困在这个用于创建多项目视觉工作室模板的教程上。我特别陷入这一行:

选择要包含在模板中的文件和文件夹,右键单击所选内容,单击“发送到”,然后单击“压缩”文件夹。文件和文件夹被压缩为 .zip 文件。

我执行了以下步骤:

  1. 创建 2 个项目。 (MyProj.Web 和 MyProj.Service)
  2. 在 MyProj.Web 中引用 MyProj.Service。
  3. 两者都导出。它们现在位于 .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:

  1. Create 2 projects. (MyProj.Web and MyProj.Service)
  2. Reference MyProj.Service in MyProj.Web.
  3. 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 技术交流群。

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

发布评论

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

评论(1

哑剧 2024-10-23 01:48:04

其他部分包括制作 .vstemplate xml 文件并将 zip 放入 ProjectTemplates 中。

根据文章:

将.zip模板文件放入Visual Studio项目模板中
目录。默认情况下,此目录为 \My Documents\Visual Studio
2010\模板\项目模板\

然后,可以从 File > 获取 Visual Studio 模板。 新项目。如果为单个项目创建模板,请将其放置在 \ItemTemplates 文件夹中,以便从解决方案资源管理器的“添加新项目”上下文菜单中使用它。

The other parts includes making the .vstemplate xml file and placing the zip in the ProjectTemplates.

Per the article:

Put the .zip template file in the Visual Studio project template
directory. By default, this directory is \My Documents\Visual Studio
2010\Templates\ProjectTemplates\

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 the Add New Item context menu in Solution Explorer.

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