Skip to content

Instantly share code, notes, and snippets.

@yokawasa
Created April 10, 2019 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yokawasa/3d769b3f172aa6f22c046eaf2219a80d to your computer and use it in GitHub Desktop.
Save yokawasa/3d769b3f172aa6f22c046eaf2219a80d to your computer and use it in GitHub Desktop.
Quickstart V2 dotnetCore Functions

Quickstart V2 dotnetCore Functions

Create a dotnetCore functions

  • 1 Functions project
    • Create a project using VSCode UI
  • 2 Create functions from templates
    • Create a functions in the project using VSCode UI

About function.json

You may expect that a new folder is created inside the app function folder with the name of the function and a class file for the function and a function.json file. But it's not. Actually, a class file is created not in its own folder and there is no function.json file as well. An interesting is that the FunctionName attribute on the Run method and the HttpTrigger attribute on the HttpRequest in the Run method’s signature. Source: Building C# Project-based Azure Functions in Visual Studio Code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment