0

我们正在尝试使用 Visual Studio 和 NuGet 包管理器更新包“Abp.Zero.Ldap”。我收到一个错误:

错误:无法解析依赖项“System.DirectoryServices.AccountManagement”。使用的源:“nuget.org”、“Project MyGet”、“Microsoft Visual Studio Offline Packages”。

并使用 Visual Studio 和 NuGet 包管理器更新另一个包“TM.Common.Text.Template”。我收到一个错误:

错误:无法解决依赖关系。“TM.Common.Text 1.0.1709.2303”与“TM.Common.Text.Template 1.0.1804.1301 约束:TM.Common.Text (>= 1.0.1804.1301)”不兼容。

你能帮我们解决这个问题吗?

4

1 回答 1

2

本期回答:https ://github.com/aspnetboilerplate/aspnetboilerplate/issues/3217

Abp.Zero.Ldap包依赖于以下包,它们是预发布的。

  • System.DirectoryServices.AccountManagement (>= 4.5.0-preview1-26216-02)
  • System.DirectoryServices.Protocols (>= 4.5.0-preview1-26216-02)

因此,如果您在运行 Install-Package 时包含预发布包,它应该可以工作。请参阅https://docs.microsoft.com/en-us/nuget/create-packages/prerelease-packages#installing-and-updating-pre-release-packages

Install-Package Abp.Zero.Ldap -IncludePrerelease
于 2018-04-26T12:08:38.620 回答