Azure Functions - .NET 5 Isolated Codespaces devcontainer

Getting started

  1. (Optional) fork this repo or copy from a template

  2. Open this repo in Codespaces or VS Code Remote for Containers

  3. Create a Functions project:

    func init
    

    Select dotnet (isolated).

  4. Restore packages

    dotnet restore
    
  5. Add a function

    func new
    

    Try an HTTP trigger.

  6. Start the app

    func start
    
  7. Click on the URL in the output to execute the function