Skip to content

Commit 3e13eef

Browse files
authored
Links to repos
1 parent 063eed0 commit 3e13eef

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

articles/azure-functions/create-first-function-azure-developer-cli.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,24 @@ This `run.ps1` file implements the function code:
338338

339339
---
340340

341+
::: zone pivot="programming-language-csharp"
342+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-dotnet-azd).
343+
::: zone-end
344+
::: zone pivot="programming-language-java"
345+
You can review the complete template project [here](https://github.com/Azure-Samples/azure-functions-java-flex-consumption-azd).
346+
::: zone-end
347+
::: zone pivot="programming-language-javascript"
348+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-javascript-azd).
349+
::: zone-end
350+
::: zone pivot="programming-language-typescript"
351+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-typescript-azd).
352+
::: zone-end
353+
::: zone pivot="programming-language-powershell"
354+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-powershell-azd).
355+
::: zone-end
356+
::: zone pivot="programming-language-python"
357+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-python-http-azd).
358+
::: zone-end
341359
After you verify your functions locally, it's time to publish them to Azure.
342360
::: zone pivot="programming-language-java"
343361
## Create Azure resources
@@ -476,7 +494,7 @@ You can use the Core Tools to obtain the URL endpoints of your functions running
476494
func azure functionapp list-functions $APP_NAME --show-keys
477495
```
478496

479-
### [Cmd](#tab/cmd)
497+
### [Cmd](#tab/cmd2)
480498
```cmd
481499
for /f "tokens=*" %i in ('azd env get-value AZURE_FUNCTION_NAME') do set APP_NAME=%i
482500
func azure functionapp list-functions %APP_NAME% --show-keys

0 commit comments

Comments
 (0)