11# Microsoft Authentication CLI
22
33[ ![ Tests] ( https://shields.io/github/workflow/status/AzureAD/microsoft-authentication-cli/Build%20and%20Test/main?style=for-the-badge&logo=github )] ( https://github.com/AzureAD/microsoft-authentication-cli/actions/workflows/dotnet-test.yml )
4- [ ![ Release] ( https://shields.io/github/v/release/AzureAD/microsoft-authentication-cli?display_name=tag&include_prereleases&sort=semver&style=for-the-badge&logo=github )] ( https://github.com/AzureAD/microsoft-authentication-cli/releases/tag/0.5.2 )
5- ![ GitHub release (latest by SemVer)] ( https://img.shields.io/github/downloads/azuread/microsoft-authentication-cli/0.5.2 /total?logo=github&style=for-the-badge&color=blue )
4+ [ ![ Release] ( https://shields.io/github/v/release/AzureAD/microsoft-authentication-cli?display_name=tag&include_prereleases&sort=semver&style=for-the-badge&logo=github )] ( https://github.com/AzureAD/microsoft-authentication-cli/releases/tag/0.5.3 )
5+ ![ GitHub release (latest by SemVer)] ( https://img.shields.io/github/downloads/azuread/microsoft-authentication-cli/0.5.3 /total?logo=github&style=for-the-badge&color=blue )
66[ ![ License] ( https://shields.io/badge/license-MIT-purple?style=for-the-badge )] ( ./LICENSE.txt )
77
88---
@@ -34,17 +34,17 @@ provide a means of downloading the latest release, so you **must** specify your
3434To install the application, run
3535
3636``` powershell
37- # 0.5.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38- $env:AZUREAUTH_VERSION = '0.5.2 '
37+ # 0.5.3 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38+ $env:AZUREAUTH_VERSION = '0.5.3 '
3939[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
4040iex "& { $(irm https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1) } -Verbose"
4141```
4242
4343Or, if you want a method more resilient to failure than ` Invoke-Expression ` , run
4444
4545``` powershell
46- # 0.5.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47- $env:AZUREAUTH_VERSION = '0.5.2 '
46+ # 0.5.3 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47+ $env:AZUREAUTH_VERSION = '0.5.3 '
4848$script = "${env:TEMP}\install.ps1"
4949$url = "https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1"
5050[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
@@ -64,8 +64,8 @@ release, so you **must** specify your desired version via the `$AZUREAUTH_VERSIO
6464To install the application, run
6565
6666``` bash
67- # 0.5.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68- export AZUREAUTH_VERSION=' 0.5.2 '
67+ # 0.5.3 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68+ export AZUREAUTH_VERSION=' 0.5.3 '
6969curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/$AZUREAUTH_VERSION /install/install.sh | sh
7070```
7171
0 commit comments