5

I'm a PHP Programmer, and totally new to C#. I have downloaded the Html Agility Pack from http://html-agility-pack.net now I need to add the assembly to the project, I think...

How can I add this package to my project?

Best Regards,

wp78de
  • 18,207
  • 7
  • 43
  • 71
André
  • 24,706
  • 43
  • 121
  • 178
  • possible duplicate of [How to use HTML Agility pack](http://stackoverflow.com/questions/846994/how-to-use-html-agility-pack) – Filip Ekberg Feb 10 '11 at 14:47
  • Possible duplicate of [How to use HTML Agility pack](https://stackoverflow.com/questions/846994/how-to-use-html-agility-pack) – wp78de Nov 24 '17 at 21:44

2 Answers2

8

It should have a prebuilt assembly somewhere (ends in .dll) just right click on your project and "Add Reference" and browse to that and include the relevant namespaces.

Previous question - How to use HTML Agility pack

Community
  • 1
  • 1
Lloyd
  • 29,197
  • 4
  • 84
  • 98
4

Open the References node in under your project in Visual Studio. You'll see a list of referenced assemblies. Right-click the References folder and select Add Reference. You can then select from the list of .NET assemblies, or Browse and find its location.

Dave Swersky
  • 34,502
  • 9
  • 78
  • 118