【发布时间】:2020-01-09 22:44:58
【问题描述】:
我有一个ASP.Net Core 2.2 应用程序。
MyApp.Sln
- MyApp.API(基于 ASP.Net Core 2.2 API 的项目)
- MyApp.Services(CL 类库)
- MyApp.Contracts -(CL 类库)
- My.Services.Tests -(CL 类库)
以上项目安装了不同的库(NuGet包)
在 .Net 框架中,我们曾经有 packages.config 列出带有版本详细信息的 nuget 包。
在 .Net Core 2.2 中哪里可以找到相同的详细信息?
因为一个 sln 中的不同项目不应该有不同版本的 NuGet。
谢谢!
【问题讨论】:
-
您可以通过右键单击您的项目并选择
Edit your project name来查看带有版本详细信息的nuget包列表。对于 MyApp.Services 项目Edit MyApp.Services.
标签: c# asp.net-core nuget asp.net-core-2.2