Skip to content

Commit 2c3fdcd

Browse files
committed
formatting for azure functions doc
1 parent 2182b58 commit 2c3fdcd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

mac/azure-functions.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ To create and deploy functions you also need an Azure subscription, which availa
2323

2424
1. In Visual Studio for Mac, select **File > New Solution…**
2525
2. From the New Project dialog, select the Azure Functions template under **Cloud > General** and click **Next**:
26+
2627
![New Project dialog showing Azure functions option](media/azure-functions-image1.png)
28+
2729
3. Enter a **Project Name** and select **Create**.
2830

2931
Visual Studio for Mac creates a .NET Standard project with a default HttpTrigger function included. It also includes NuGet references to a variety of **AzureWebJobs** packages, as well as the **Newtonsoft.Json** package.
@@ -60,13 +62,17 @@ Now that you've created a new Azure Functions project in Visual Studio for Mac,
6062
With Azure Functions support in Visual Studio for Mac you can test and debug your function on your local development computer.
6163

6264
1. To test your function locally, press the **Run** button in Visual Studio for Mac:
63-
![Start debugging button in visual studio for mac](media/azure-functions-run.png)
64-
2. Running the project starts local debugging on the Azure Function and opens a new Terminal window, as illustrated in the following image:
65+
66+
![Start debugging button in visual studio for mac](media/azure-functions-run.png)
67+
68+
1. Running the project starts local debugging on the Azure Function and opens a new Terminal window, as illustrated in the following image:
6569

6670
![terminal window showing function output](media/azure-functions-terminal.png)
6771

6872
Copy the URL from the output.
73+
6974
3. Paste the URL for the HTTP request into your browser's address bar. Add the query string `?name=<yourname>` to the end of the URL and execute the request. The following image shows the response in the browser to the local GET request returned by the function:
75+
7076
![http request in browser](media/azure-functions-httpreq.png)
7177

7278
## Creating a new function

0 commit comments

Comments
 (0)