You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Enter a **Project Name** and select **Create**.
28
30
29
31
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,
60
62
With Azure Functions support in Visual Studio for Mac you can test and debug your function on your local development computer.
61
63
62
64
1. To test your function locally, press the **Run** button in Visual Studio for Mac:
63
-

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
+

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:
65
69
66
70

67
71
68
72
Copy the URL from the output.
73
+
69
74
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
+
70
76

0 commit comments