diff --git a/context/get-started-now.md b/context/get-started-now.md index ba772c4..d766cf5 100644 --- a/context/get-started-now.md +++ b/context/get-started-now.md @@ -12,6 +12,7 @@ To get started, you'll need the following components: 2. **PowerShell**: Ensure you have PowerShell installed on your machine. 3. **Power Platform Command Line Tools**: Install the Power Platform Command Line tools to interact with your Power Platform environment. 4. **.NET 8.0 SDK**: Download and install the .NET 8.0 SDK to build the code. +5. **Azure CLI**: Install the Azure CLI This can seem daunting but the following steps will help you with this process assuming you are using Microsoft Windows as your local operating system. @@ -97,6 +98,26 @@ pac -v 3. Close and reopen your terminal to ensure the new components are in the system path. +## Azure Command Line Interface + +1. You can install the Azure Command Line Interface (CLI) using winget + +```pwsh +winget install -e --id Microsoft.AzureCLI +``` + +2. **Verification**: Verify the installation by running: + +```pswh +az -version +``` + +3. Login to the Azure cli with user account account access to the dataverse + +```pwsh +az login --allow-no-subscriptions +``` + ## Getting Started Have the prerequisites installed and verified? If so lets looks at some samples to get started. For each sample reference the README.md for more information. diff --git a/learning/README.md b/learning/README.md index 0ba9ade..e603d5b 100644 --- a/learning/README.md +++ b/learning/README.md @@ -20,11 +20,14 @@ This module explains the following concepts: ## Prerequisites +Using guide [Get Started Now](../context/get-started-now.md) ensure teh following pre-requisites are installed and verified + - Installed version of .NET SDK 8.0 - Visual Studio Code - PowerShell Core - Power Platform CLI - Git Client +- Azure CLI > NOTE: Unless stated otherwise to use of the learning module assumed that you are using the `integration` branch. If you are new to feature branched you can read [Understanding Feature Branches](../context/understanding-feature-branches.md). diff --git a/site/assets/js/technical-learning.json b/site/assets/js/technical-learning.json index e6430b7..44a2acd 100644 --- a/site/assets/js/technical-learning.json +++ b/site/assets/js/technical-learning.json @@ -83,6 +83,7 @@ "isRequired": true, "choices": [ "Downloading and installing the .NET SDK", + "Installing Azure Command Line Tools", "Installing Power Platform Command Line Tools", "Using Visual Studio Code to author and edit tests" ]