Install-Package : Unable to resolve dependency 'System.DirectoryServices.AccountManagement'. Source(s) used: 'nuget.org', 'Microsoft Visual Studio Offline Packages'.
At line:1 char:1
+ Install-Package Abp.Zero.Ldap
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Install-Package], Exception
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand.
Install-Package Abp.Zero.Ldap
I have tried add reference System.DirectoryServices.AccountManagement, but still throws errors like above.
Hi @sylfree9999, there is an issue with latest version of this package. Could you try to install previous version? We well fix this issue in a short time.
@sylfree9999 https://www.nuget.org/packages/Abp.Zero.Ldap package depends on below packages and they are pre releases.
So if you include pre release pacakges while running Install-Package, it should work. See https://docs.microsoft.com/en-us/nuget/create-packages/prerelease-packages#installing-and-updating-pre-release-packages.
@ismcagdas @alirizaadiyahsi
By using
Install-Package Abp.Zero.Ldap -IncludePrerelease
It finally gets installed!
Thanks
Most helpful comment
@ismcagdas @alirizaadiyahsi
By using
It finally gets installed!
Thanks