简体   繁体   English

无法在 VS2012 上安装 HtmlAgilityPack

[英]Cant install HtmlAgilityPack on VS2012

I can not install the HtmlAgilityPack by nuget ... I already uninstalled and reinserted the nuget, I changed the .NET version and still the same error我无法通过 nuget 安装 HtmlAgilityPack ...我已经卸载并重新插入了 nuget,我更改了 .NET 版本,但仍然出现相同的错误

Install-Package : 'HtmlAgilityPack' already has a dependency defined for 'System.Net.Http'.
At line:1 char:16
+ Install-Package <<<<  HtmlAgilityPack -Version 1.5.1
    + CategoryInfo          : NotSpecified: (:) [Install-Package], InvalidOperationException
    + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPa 
   ckageCommand

This is because, to my understanding, the latest version of 'System.Net.Http' is not compatible with the latest version of Nuget that you can get on VS2012 (which is Nuget 2.8, same applies to VS2010).这是因为,据我所知,最新版本的“System.Net.Http”与您可以在 VS2012 上获得的最新版本的 Nuget 不兼容(即 Nuget 2.8,同样适用于 VS2010)。 So, you have two options here :所以,你在这里有两个选择:

  • Option 1选项1

Install the latest version of Visual Studio where you'll get the latest version of Nuget and you won't have this problem anymore.安装最新版本的 Visual Studio,您将获得最新版本的 Nuget,您将不再遇到此问题。

  • Option 2选项 2

Instead of picking the lastest version of the package 'HtmlAgilityPack', just get the last version that works with VS2012/2010, which is 1.4.9.5.而不是选择包'HtmlAgilityPack'的最新版本,只需获取适用于VS2012/2010的最新版本,即1.4.9.5。 Which means that you'll be using :这意味着您将使用:

PM> Install-Package HtmlAgilityPack -Version 1.4.9.5 PM> Install-Package HtmlAgilityPack -Version 1.4.9.5

nuget deleted this verson of HtmlAgilityPack ; nuget 删除了这个版本的 HtmlAgilityPack ;

you can Download from this link https://www.dll-files.com/htmlagilitypack.dll.html您可以从此链接下载https://www.dll-files.com/htmlagilitypack.dll.html

but this canot support GetElementsByTagName :\\但这不能支持 GetElementsByTagName :\\

Download the latest version and refer the dll from packages.下载最新版本并从包中引用 dll。 It works.有用。 No dependency issues.没有依赖问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM