You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Next, clear all NuGet caches in case we are overwriting existing versions of existing NuGet packages (this can cause runtime startup issues in Composer)
# Next, clear all NuGet caches in case we are overwriting existing versions of existing NuGet packages (this can cause runtime startup issues in Composer)
124
124
#& $NuGetFullPath locals all -clear 2>> "$logFile" | Out-Null
125
125
126
126
# Next, add ACSConnector and its dependencies to local NuGet feed
127
-
if ($showCommands.ToLower() -eq"true") {Write-Host''; Write-Host"$NuGetFullPath add $acsConnectorNuGetPackage -Source $acsConnectorLocalFeedFolder" }
Copy file name to clipboardexpand all lines: README.md
+11-3
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,19 @@ Services, you can have an agent escalation capability up and working in 15 minut
7
7
8
8
### <aname="Prerequisites"></a>Prerequisites
9
9
10
+
#### Powershell 7
11
+
The deployment scripts require Powershell 7 which can be downloaded [here](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.2)
12
+
10
13
#### Ngrok
11
14
To install ngrok, follow instructions [here](https://ngrok.com/download)
12
15
13
16
#### Azure CLI
14
-
The deployment scripts require Azure CLI version 2.22.0 or newer which you can install from [here](
17
+
The deployment scripts require Azure CLI version 2.22.0 or newer. You can check which version of the Azure CLI you have
18
+
installed by running this command from command prompt:
19
+
```
20
+
az version
21
+
```
22
+
If you don't already have the Azure CLI installed, you can install it from [here](
0 commit comments