NuGet 用于具有多个项目的解决方案

NuGet for solutions with multiple projects(NuGet 用于具有多个项目的解决方案)
本文介绍了NuGet 用于具有多个项目的解决方案的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个包含 3 个项目的解决方案:

Suppose I have a solution with 3 projects:

  • 核心
  • 用户界面
  • 测试

我使用的一些 NuGet 包将适用于所有 3 个项目.有些只适用于 UI 和测试,有些只适用于测试(如 NUnit).

Some of the NuGet packages I use will apply to all 3 projects. Some will just apply to UI and Tests, and some will just apply to Tests (like NUnit).

使用 NuGet 进行设置的正确方法是什么?

What is the right way to set this up using NuGet?

  1. 我是否应该在需要参考时对所有三个项目都使用添加库包参考"?
  2. 第一次需要包时是否应该使用添加库包引用",然后使用添加引用->浏览后续用法?

无论哪种情况,我应该有多少个 packages.config 文件?

In either case, how many packages.config files should I have?

推荐答案

对于遇到此问题的任何人,现在有以下选项:

For anybody stumbling across this, now there is the following option :

右键单击您的解决方案 > 管理解决方案的 NuGet 包...

Right-click your solution > Manage NuGet Packages for Solution...

... 或者:

工具 > 库包管理器 > 管理用于解决方案的 NuGet 包...

Tools > Library Package Manager > Manage NuGet Packages for Solution...

如果您转到已安装的包区域,您可以在解决方案中的每个项目中管理"单个包.

And if you go to the Installed packages area you can 'Manage' a single package across every project in the solution.

这篇关于NuGet 用于具有多个项目的解决方案的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
quot;Overflowquot; compiler error with -9223372036854775808L(编译器错误-9223372036854775808L(Q;溢出Q))
Visual Studio 2010 ReportViewer Assembly References(Visual Studio 2010 ReportViewer程序集引用)
Weird behaviour when I open a reportviewer in WPF(在WPF中打开报表查看器时出现奇怪的行为)
how do i pass parameters to aspnet reportviewer(如何将参数传递给aspnet report查看器)