Skip to Content
Hands-On Azure for Developers
book

Hands-On Azure for Developers

by Kamil Mrzygłód
November 2018
Intermediate to advanced
606 pages
15h 7m
English
Packt Publishing
Content preview from Hands-On Azure for Developers

Function file

When you take a look at your bin directory, where compiled functions are available, you will find a bit of a different structure than in traditional applications.

Here, you can find my folder from the exercise from this chapter:

As you can see, it contains the Function1 directory, which contains one file named function. json. Here, you can find its content:

{  "generatedBy": "Microsoft.NET.Sdk.Functions-1.0.14",  "configurationSource": "attributes",  "bindings": [    {      "type": "httpTrigger",      "methods": [        "get",        "post"      ],      "authLevel": "function",      "name": "req"    }  ],  "disabled": false, "scriptFile": "../bin/HandsOnAzure.Function.dll", ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Implementing Azure: Putting Modern DevOps to Use

Implementing Azure: Putting Modern DevOps to Use

Florian Klaffenbach, Oliver Michalski, Markus Klein, Mohamed Wali

Publisher Resources

ISBN: 9781789340624Supplemental Content