包含三个项目的项目模板?

发布于 2024-10-03 09:56:36 字数 251 浏览 9 评论 0原文

是否可以创建包含三个项目的项目模板?

我为我的客户构建了一个示例项目,其中包含他们所有新应用程序的基本结构。如果能够从中创建一个项目模板以使一切变得更加容易,那就太好了。

解决方案中的项目

  • ProjectName.Abstractions
  • ProjectName.Services
  • ProjectName.WebClient

我真正想要的是解决方案模板 =)

Is it possible to create a project template containing three projects?

I've built a sample project for my client which contains the basic structure for all their new applications. It would be sweet to be able to create a project template from it to make everything a lot easier.

Projects in the solution

  • ProjectName.Abstractions
  • ProjectName.Services
  • ProjectName.WebClient

What I really would like is a solution template =)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

旧话新听 2024-10-10 09:56:36

没有解决方案模板,但有多项目模板:

http://msdn.microsoft.com/en-us/library/ms185308(v=VS.100).aspx

There are no solution templates, but there are multi-project templates:

http://msdn.microsoft.com/en-us/library/ms185308(v=VS.100).aspx

凡尘雨 2024-10-10 09:56:36

如果您想创建一个包含三个项目的解决方案,如上所述。只需按照创建多项目模板的方法即可。

然后在主项目的 .csproj 文件中,
替换

<ProjectReference Include="\ProjectName.Services\ProjectName.Services.csproj">
      <Project>{7D31A904-BA57-4CDA-XXXX-XXXXXXXXXXX}</Project>
      <Name>ProjectName.Services</Name>
    </ProjectReference>

为下面的代码,

<ProjectReference Include="\$safeprojectname$.Services\$safeprojectname$.Services.csproj">
      <Project>{7D31A904-BA57-4CDA-XXXX-XXXXXXXXXXX}</Project>
      <Name>$safeprojectname$.Services</Name>
    </ProjectReference>

If you want to create a solution which contains three project as above. Just follow method of creating multi-project template.

And then in .csproj file of main project,
replace

<ProjectReference Include="\ProjectName.Services\ProjectName.Services.csproj">
      <Project>{7D31A904-BA57-4CDA-XXXX-XXXXXXXXXXX}</Project>
      <Name>ProjectName.Services</Name>
    </ProjectReference>

with below code,

<ProjectReference Include="\$safeprojectname$.Services\$safeprojectname$.Services.csproj">
      <Project>{7D31A904-BA57-4CDA-XXXX-XXXXXXXXXXX}</Project>
      <Name>$safeprojectname$.Services</Name>
    </ProjectReference>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文