Use NuGet with Azure Functions
Azure Functions are "serverless" pieces of functionality. You can take your existing C# or JavaScript code and it becomes a single unit of maintenance, upgrade, scale etc.
One of the key differences is the way that code is authored out of the box - although you can use an IDE like Visual Studio you can also use the browser as your IDE.
There are a few nuances that you need to be aware of - such as adding NuGet packages.
It's easy once you know how though! see how you can do this in this short video.
The configuration I pasted in to my project.json is here:
1 { "frameworks": { "net46": { "dependencies": { "Newtonsoft.Json" : "9.0.1" } } }