Skip to content

Commit 2559519

Browse files
authored
Merge pull request #92161 from ggailey777/powershell
Remove Preview from PowerShell
2 parents 154ec52 + 17c6928 commit 2559519

File tree

3 files changed

+25
-31
lines changed

3 files changed

+25
-31
lines changed

articles/azure-functions/functions-create-first-function-powershell.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
---
2-
title: Create your first PowerShell function with Azure Functions
2+
title: Create your first PowerShell function in Azure
33
description: Learn how to create your first PowerShell function in Azure using Visual Studio Code.
4-
services: functions
5-
keywords:
64
author: joeyaiello
7-
manager: jeconnoc
5+
manager: gwallace
86
ms.author: jaiello
97
ms.reviewer: glenga
108
ms.date: 04/25/2019
119
ms.topic: quickstart
1210
ms.service: azure-functions
13-
ms.devlang: powershell
1411
---
1512

16-
# Create your first PowerShell function in Azure (preview)
17-
18-
[!INCLUDE [functions-powershell-preview-note](../../includes/functions-powershell-preview-note.md)]
13+
# Create your first PowerShell function in Azure
1914

2015
This quickstart article walks you through how to create your first [serverless](https://azure.com/serverless) PowerShell function using Visual Studio Code.
2116

@@ -61,7 +56,7 @@ The Azure Functions project template in Visual Studio Code creates a project tha
6156
> [!NOTE]
6257
> This article was designed to be completed outside of a workspace. In this case, do not select a project folder that is part of a workspace.
6358
64-
1. Select the **Powershell (preview)** as the language for your function app project and then **Azure Functions v2**.
59+
1. Select the **Powershell** as the language for your function app project and then **Azure Functions v2**.
6560

6661
1. Choose **HTTP Trigger** as the template for your first function, use `HTTPTrigger` as the function name, and choose an authorization level of **Function**.
6762

@@ -99,10 +94,9 @@ After you've verified that the function runs correctly on your local computer, i
9994
10095
> [!NOTE]
10196
> Remember to remove any calls to `Wait-Debugger` before you publish your functions to Azure.
102-
103-
> [!NOTE]
104-
> Creating a Function App in Azure will only prompt for Function App name.
105-
> Set azureFunctions.advancedCreation to true to be prompted for all other values.
97+
>
98+
> Creating a function app in Azure only prompts for your function app name. Other values are defined for you.
99+
> Set `azureFunctions.advancedCreation` to `true` to be prompted for all other values.
106100
107101
[!INCLUDE [functions-publish-project-vscode](../../includes/functions-publish-project-vscode.md)]
108102

articles/azure-functions/functions-host-json.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ The following sample *host.json* files have all possible options specified.
6666
}
6767
}
6868
},
69+
"managedDependency": {
70+
"enabled": true
71+
},
6972
"singleton": {
7073
"lockPeriod": "00:00:15",
7174
"listenerLockPeriod": "00:01:00",
7275
"listenerLockRecoveryPollingInterval": "00:01:00",
7376
"lockAcquisitionTimeout": "00:01:00",
7477
"lockAcquisitionPollingInterval": "00:00:03"
7578
},
76-
"watchDirectories": [ "Shared", "Test" ],
77-
"managedDependency": {
78-
"enabled": true
79-
}
79+
"watchDirectories": [ "Shared", "Test" ]
8080
}
8181
```
8282

@@ -242,6 +242,18 @@ This setting is a child of [logging](#logging). It controls the console logging
242242
|---------|---------|---------|
243243
|isEnabled|false|Enables or disables console logging.|
244244

245+
## managedDependency
246+
247+
Managed dependency is a feature that is currently only supported with PowerShell based functions. It enables dependencies to be automatically managed by the service. When the `enabled` property is set to `true`, the `requirements.psd1` file is processed. Dependencies are updated when any minor versions are released. For more information, see [Managed dependency](functions-reference-powershell.md#dependency-management) in the PowerShell article.
248+
249+
```json
250+
{
251+
"managedDependency": {
252+
"enabled": true
253+
}
254+
}
255+
```
256+
245257
## queues
246258

247259
Configuration settings can be found in [Storage queue triggers and bindings](functions-bindings-storage-queue.md#host-json).
@@ -292,18 +304,6 @@ A set of [shared code directories](functions-reference-csharp.md#watched-directo
292304
}
293305
```
294306

295-
## managedDependency
296-
297-
Managed dependency is a preview feature that is currently only supported with PowerShell based functions. It enables dependencies to be automatically managed by the service. When the enabled property is set to true, the [requirements.psd1](functions-reference-powershell.md#dependency-management) file will be processed. Dependencies will be updated when any minor versions are released.
298-
299-
```json
300-
{
301-
"managedDependency": {
302-
"enabled": true
303-
}
304-
}
305-
```
306-
307307
## Next steps
308308

309309
> [!div class="nextstepaction"]

articles/azure-functions/functions-run-local.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ In version 2.x, when you run the command you must choose a runtime for your proj
151151
Select a worker runtime:
152152
dotnet
153153
node
154-
python (preview)
155-
powershell (preview)
154+
python
155+
powershell
156156
```
157157
158158
Use the up/down arrow keys to choose a language, then press Enter. If you plan to develop JavaScript or TypeScript functions, choose **node**, and then select the language. TypeScript has [some additional requirements](functions-reference-node.md#typescript).

0 commit comments

Comments
 (0)