File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -261,12 +261,16 @@ function cleanExtension([string] $bitness) {
261
261
Remove-Item - Recurse - Force " $privateSiteExtensionPath \$bitness \runtimes\linux" - ErrorAction SilentlyContinue
262
262
Remove-Item - Recurse - Force " $privateSiteExtensionPath \$bitness \runtimes\osx" - ErrorAction SilentlyContinue
263
263
264
- Get-ChildItem " $privateSiteExtensionPath \$bitness \workers\node\grpc\src\node\extension_binary" |
264
+ Get-ChildItem " $privateSiteExtensionPath \$bitness \workers\node\grpc\src\node\extension_binary" - ErrorAction SilentlyContinue |
265
265
Foreach-Object {
266
266
if (-Not ($_.FullName -Match " win32" )) {
267
267
Remove-Item - Recurse - Force $_.FullName
268
268
}
269
269
}
270
+
271
+ $keepRuntimes = @ (' win' , ' win-x86' , ' win10-x86' )
272
+ Get-ChildItem " $privateSiteExtensionPath \$bitness \workers\powershell\runtimes" - Exclude $keepRuntimes - ErrorAction SilentlyContinue |
273
+ Remove-Item - Recurse - Force - ErrorAction SilentlyContinue
270
274
}
271
275
272
276
dotnet -- version
@@ -297,4 +301,4 @@ if ($bypassPackaging){
297
301
298
302
# build win-x86 and win-x64 extension
299
303
BuildPackages 0
300
- }
304
+ }
Original file line number Diff line number Diff line change 37
37
<PackageReference Include =" Microsoft.Azure.AppService.Proxy.Client" Version =" 2.0.6830001-df202c6c" />
38
38
<PackageReference Include =" Microsoft.Azure.Functions.JavaWorker" Version =" 1.2.3" />
39
39
<PackageReference Include =" Microsoft.Azure.Functions.NodeJsWorker" Version =" 1.0.0-beta7" />
40
+ <PackageReference Include =" Microsoft.Azure.Functions.PowerShellWorker" Version =" 0.1.38-alpha" />
40
41
<PackageReference Include =" Microsoft.Azure.WebJobs" Version =" 3.0.3" />
41
42
<PackageReference Include =" Microsoft.Azure.WebJobs.Extensions" Version =" 3.0.1" />
42
43
<PackageReference Include =" Microsoft.Azure.WebJobs.Extensions.Http" Version =" 3.0.1" />
67
68
<ProjectReference Include =" ..\WebJobs.Script.Grpc\WebJobs.Script.Grpc.csproj" />
68
69
</ItemGroup >
69
70
70
- </Project >
71
+ </Project >
You can’t perform that action at this time.
0 commit comments