August 2017
Intermediate to advanced
468 pages
12h 5m
English
To add other NuGet packages to the Function App, we need to reference them in the project.json file. Let us show a step-by-step example of how to configure such a reference.
Let us create a script-based version of our ProcessQueue function, and add a reference to the NuGet library called HtmlAgilityPack. To do so, execute the following steps:
using System; using System.Threading.Tasks; using HtmlAgilityPack; ...