skip to Main Content

Docker Installation fails on secure agent

I ran the following powershell script: write-output "Installing nuger package provider"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls11 -bor [System.Net.SecurityProtocolType]::Tls12; Install-PackageProvider -name nuget -force; if (-not $?) { Write-Error 'Install package provider failed' exit 1 } write-output "Installing Docker module"; Install-Module DockerMsftProvider -Force; if…

VIEW QUESTION

Upstream Azure SignalR function issues Could not load file or assembly Microsoft.Extensions.Options runtime exception

Note: This issue is not duplicate despite the title reads similarly. The following upstream signalR trigger function has been working well until we upgraded the NuGet packages to the latest versions. [Function("OnConnected")] [SignalROutput(HubName = "myhub")] public async Task<SignalRMessageAction> OnConnectedAsync([SignalRTrigger("myhub", "connections",…

VIEW QUESTION
Back To Top
Search