2
2
3
3
| Branch| Status|
4
4
| ---| ---|
5
- | master| [ ![ master-build-status] [ ]] [ master-build-site ] |
6
- | dev| [ ![ dev-build-status] [ ]] [ dev-build-site ] |
5
+ | v2.x| [ ![ v2.x-build-status] [ ]] [ v2.x-build-site ] |
7
6
8
7
[ azure-functions-logo ] : https://github.com/raw/Azure/azure-functions-cli/master/src/Azure.Functions.Cli/npm/assets/azure-functions-logo-color-raster.png
9
- [ master-build-status ] : https://ci.appveyor.com/api/projects/status/github/Azure/azure-functions-powershell-worker?branch=master&svg=true
10
- [ dev-build-status ] : https://ci.appveyor.com/api/projects/status/github/Azure/azure-functions-powershell-worker?branch=dev&svg=true
11
- [ master-build-site ] : https://ci.appveyor.com/project/appsvc/azure-functions-powershell-worker?branch=master
12
- [ dev-build-site ] : https://ci.appveyor.com/project/appsvc/azure-functions-powershell-worker?branch=dev
8
+ [ v2.x-build-status ] : https://ci.appveyor.com/api/projects/status/github/Azure/azure-functions-powershell-worker?branch=v2.x&svg=true
9
+ [ v2.x-build-site ] : https://ci.appveyor.com/project/appsvc/azure-functions-powershell-worker?branch=v2.x
13
10
14
11
# Azure Functions PowerShell Language Worker
15
12
@@ -49,7 +46,7 @@ with any additional questions or comments.
49
46
50
47
### Prereqs
51
48
52
- * [ .NET 2.1 SDK] ( https://www.microsoft.com/net/download/visual-studio-sdks )
49
+ * [ .NET 2.2 SDK] ( https://www.microsoft.com/net/download/visual-studio-sdks )
53
50
54
51
### Build
55
52
@@ -118,12 +115,12 @@ of your test functions app.
118
115
119
116
Then copy the ` publish ` directory to ` workers ` :
120
117
``` powershell
121
- Copy-Item -Recurse -Force ./src/bin/Debug/netcoreapp2.1 /publish/ "<Azure Functions Host Root>/src/WebJobs.Script.WebHost/bin/Debug/netcoreapp2.1 /workers/powershell"
118
+ Copy-Item -Recurse -Force ./src/bin/Debug/netcoreapp2.2 /publish/ "<Azure Functions Host Root>/src/WebJobs.Script.WebHost/bin/Debug/netcoreapp2.2 /workers/powershell"
122
119
```
123
120
124
121
Then you can start the host but running:
125
122
``` sh
126
- dotnet ./src/WebJobs.Script.WebHost/bin/Debug/netcoreapp2.1 /Microsoft.Azure.WebJobs.Script.WebHost.dll
123
+ dotnet ./src/WebJobs.Script.WebHost/bin/Debug/netcoreapp2.2 /Microsoft.Azure.WebJobs.Script.WebHost.dll
127
124
```
128
125
129
126
> Note: Remember to remove ` "AzureWebJobsScriptRoot" `
@@ -145,6 +142,6 @@ That will place a `Microsoft.Azure.Functions.PowerShellWorker.*.nupkg` in:
145
142
146
143
It pulls the contents of the publish folder in:
147
144
148
- ` azure-functions-powershell-worker/src/bin/Debug/netcoreapp2.1 /publish `
145
+ ` azure-functions-powershell-worker/src/bin/Debug/netcoreapp2.2 /publish `
149
146
150
147
if you specify a different Configuration or TargetFramework that will be honored.
0 commit comments