├── .azuredevops ├── BuildAndTest.yml ├── ci.yml ├── pr.yml └── release.yml ├── .config ├── 1espt │ └── PipelineAutobaseliningConfig.yml └── guardian │ └── SDL │ └── .gdnsuppress ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS └── dependabot.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── AzureAuth.lutconfig ├── AzureAuth.sln ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── bin ├── mac │ ├── azureauth │ ├── dotnet │ └── publish ├── requirements.txt ├── trigger_azure_pipelines.py ├── version.py └── win │ ├── azureauth.cmd │ ├── dotnet.cmd │ └── publish.cmd ├── docs ├── public-client-flows.png ├── system-web-config.png ├── uninstall.md ├── usage.md └── wam-config.png ├── examples └── python │ ├── README.md │ └── azureauth.py ├── guardian_baselines.gdnbaselines ├── install ├── install.ps1 ├── install.sh └── uninstall.ps1 ├── nuget.config └── src ├── AdoPat.Test ├── AdoPat.Test.csproj ├── PatCacheTest.cs ├── PatClientTest.cs ├── PatManagerTest.cs ├── PatOptionsTest.cs ├── PatTokenExtensionsTest.cs └── ScopesTest.cs ├── AdoPat ├── AdoPat.csproj ├── Constants.cs ├── IPatCache.cs ├── IPatClient.cs ├── IStorageWrapper.cs ├── ITokensHttpClientWrapper.cs ├── PatCache.cs ├── PatClient.cs ├── PatClientException.cs ├── PatManager.cs ├── PatOptions.cs ├── PatTokenExtensions.cs ├── Scopes.cs ├── StorageWrapper.cs └── TokensHttpClientWrapper.cs ├── AzureAuth.Test ├── Ado │ ├── PatFromEnvTest.cs │ └── TokenFormattingExtensionsTest.cs ├── AliasTest.cs ├── AuthFlowResultExtensionsTest.cs ├── AuthModeExtensionsTest.cs ├── AzureAuth.Test.csproj ├── CommandAadTest.cs ├── Commands │ └── Ado │ │ └── CommandTokenTest.cs ├── ConfigTest.cs ├── ExceptionListToStringConverterTest.cs ├── IEnvExtensionsTest.cs ├── PromptHintTest.cs └── PublicClientAuthTest.cs ├── AzureAuth ├── Ado │ ├── AuthParameters.cs │ ├── Authorization.cs │ ├── Constants.cs │ ├── PatFromEnv.cs │ └── TokenFormattingExtensions.cs ├── Alias.cs ├── AuthFlowResultExtensions.cs ├── AuthModeExtensions.cs ├── AzureAuth.csproj ├── Commands │ ├── Ado │ │ ├── CommandPat.cs │ │ ├── CommandToken.cs │ │ └── Pat │ │ │ └── CommandScopes.cs │ ├── CommandAad.cs │ ├── CommandAdo.cs │ ├── CommandAzureAuth.cs │ ├── CommandInfo.cs │ └── Info │ │ └── CommandInfoResetDeviceID.cs ├── Config.cs ├── Constants.cs ├── EnvVars.cs ├── ExceptionListToStringConverter.cs ├── IEnvExtensions.cs ├── IPublicClientAuth.cs ├── LegalFileChecker.cs ├── OutputMode.cs ├── Program.cs ├── PromptHint.cs └── PublicClientAuth.cs ├── MSALWrapper.Benchmark ├── BrokerBenchmark.cs └── MSALWrapper.Benchmark.csproj ├── MSALWrapper.Test ├── AuthFlow │ ├── AuthFlowExecutorTest.cs │ ├── AuthFlowFactoryTest.cs │ ├── AuthFlowResultTest.cs │ ├── AuthFlowTestBase.cs │ ├── BrokerTest.cs │ ├── CachedAuthTest.cs │ ├── DeviceCodeTest.cs │ ├── IntegratedWindowsAuthenticationTest.cs │ └── WebTest.cs ├── AuthModeTest.cs ├── ExceptionExtensionsTest.cs ├── LockedTest.cs ├── MSALWrapper.Test.csproj ├── MockAccount.cs ├── PCAWrapperTest.cs ├── StopwatchTrackerTest.cs └── TokenResultTest.cs ├── MSALWrapper ├── AuthFlow │ ├── AuthFlowBase.cs │ ├── AuthFlowExecutor.cs │ ├── AuthFlowFactory.cs │ ├── AuthFlowResult.cs │ ├── Broker.cs │ ├── CachedAuth.cs │ ├── DeviceCode.cs │ ├── IAuthFlow.cs │ ├── IntegratedWindowsAuthentication.cs │ ├── NullTokenResultException.cs │ └── Web.cs ├── AuthMode.cs ├── AuthParameters.cs ├── AuthenticationTimeoutException.cs ├── Constants.cs ├── ExceptionExtensions.cs ├── IMsalWrapper.cs ├── IPCAWrapper.cs ├── IPlatformUtils.cs ├── IStopwatch.cs ├── JsonWebTokenExtensions.cs ├── Locked.cs ├── MSALWrapper.csproj ├── MsalHttpClientFactoryAdaptor.cs ├── MsalWrapper.cs ├── PCACache.cs ├── PCAWrapper.cs ├── PlatformUtils.cs ├── StopwatchTracker.cs ├── TaskExecutor.cs ├── TokenResult.cs └── TokenResultExtensions.cs ├── TestHelper ├── Fake.cs ├── MemoryLogger.cs └── TestHelper.csproj └── stylecop ├── GlobalSuppressions.Test.cs ├── GlobalSuppressions.cs └── stylecop.json /.azuredevops/BuildAndTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.azuredevops/BuildAndTest.yml -------------------------------------------------------------------------------- /.azuredevops/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.azuredevops/ci.yml -------------------------------------------------------------------------------- /.azuredevops/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.azuredevops/pr.yml -------------------------------------------------------------------------------- /.azuredevops/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.azuredevops/release.yml -------------------------------------------------------------------------------- /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.config/guardian/SDL/.gdnsuppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.config/guardian/SDL/.gdnsuppress -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AzureAuth.lutconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/AzureAuth.lutconfig -------------------------------------------------------------------------------- /AzureAuth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/AzureAuth.sln -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /bin/mac/azureauth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/mac/azureauth -------------------------------------------------------------------------------- /bin/mac/dotnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/mac/dotnet -------------------------------------------------------------------------------- /bin/mac/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/mac/publish -------------------------------------------------------------------------------- /bin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/requirements.txt -------------------------------------------------------------------------------- /bin/trigger_azure_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/trigger_azure_pipelines.py -------------------------------------------------------------------------------- /bin/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/version.py -------------------------------------------------------------------------------- /bin/win/azureauth.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/win/azureauth.cmd -------------------------------------------------------------------------------- /bin/win/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/win/dotnet.cmd -------------------------------------------------------------------------------- /bin/win/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/bin/win/publish.cmd -------------------------------------------------------------------------------- /docs/public-client-flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/docs/public-client-flows.png -------------------------------------------------------------------------------- /docs/system-web-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/docs/system-web-config.png -------------------------------------------------------------------------------- /docs/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/docs/uninstall.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/wam-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/docs/wam-config.png -------------------------------------------------------------------------------- /examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/examples/python/README.md -------------------------------------------------------------------------------- /examples/python/azureauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/examples/python/azureauth.py -------------------------------------------------------------------------------- /guardian_baselines.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/guardian_baselines.gdnbaselines -------------------------------------------------------------------------------- /install/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/install/install.ps1 -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/install/install.sh -------------------------------------------------------------------------------- /install/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/install/uninstall.ps1 -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/nuget.config -------------------------------------------------------------------------------- /src/AdoPat.Test/AdoPat.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat.Test/AdoPat.Test.csproj -------------------------------------------------------------------------------- /src/AdoPat.Test/PatCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat.Test/PatCacheTest.cs -------------------------------------------------------------------------------- /src/AdoPat.Test/PatClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat.Test/PatClientTest.cs -------------------------------------------------------------------------------- /src/AdoPat.Test/PatManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat.Test/PatManagerTest.cs -------------------------------------------------------------------------------- /src/AdoPat.Test/PatOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat.Test/PatOptionsTest.cs -------------------------------------------------------------------------------- /src/AdoPat.Test/PatTokenExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat.Test/PatTokenExtensionsTest.cs -------------------------------------------------------------------------------- /src/AdoPat.Test/ScopesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat.Test/ScopesTest.cs -------------------------------------------------------------------------------- /src/AdoPat/AdoPat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/AdoPat.csproj -------------------------------------------------------------------------------- /src/AdoPat/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/Constants.cs -------------------------------------------------------------------------------- /src/AdoPat/IPatCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/IPatCache.cs -------------------------------------------------------------------------------- /src/AdoPat/IPatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/IPatClient.cs -------------------------------------------------------------------------------- /src/AdoPat/IStorageWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/IStorageWrapper.cs -------------------------------------------------------------------------------- /src/AdoPat/ITokensHttpClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/ITokensHttpClientWrapper.cs -------------------------------------------------------------------------------- /src/AdoPat/PatCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/PatCache.cs -------------------------------------------------------------------------------- /src/AdoPat/PatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/PatClient.cs -------------------------------------------------------------------------------- /src/AdoPat/PatClientException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/PatClientException.cs -------------------------------------------------------------------------------- /src/AdoPat/PatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/PatManager.cs -------------------------------------------------------------------------------- /src/AdoPat/PatOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/PatOptions.cs -------------------------------------------------------------------------------- /src/AdoPat/PatTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/PatTokenExtensions.cs -------------------------------------------------------------------------------- /src/AdoPat/Scopes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/Scopes.cs -------------------------------------------------------------------------------- /src/AdoPat/StorageWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/StorageWrapper.cs -------------------------------------------------------------------------------- /src/AdoPat/TokensHttpClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AdoPat/TokensHttpClientWrapper.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/Ado/PatFromEnvTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/Ado/PatFromEnvTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/Ado/TokenFormattingExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/Ado/TokenFormattingExtensionsTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/AliasTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/AliasTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/AuthFlowResultExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/AuthFlowResultExtensionsTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/AuthModeExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/AuthModeExtensionsTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/AzureAuth.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/AzureAuth.Test.csproj -------------------------------------------------------------------------------- /src/AzureAuth.Test/CommandAadTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/CommandAadTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/Commands/Ado/CommandTokenTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/Commands/Ado/CommandTokenTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/ConfigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/ConfigTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/ExceptionListToStringConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/ExceptionListToStringConverterTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/IEnvExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/IEnvExtensionsTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/PromptHintTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/PromptHintTest.cs -------------------------------------------------------------------------------- /src/AzureAuth.Test/PublicClientAuthTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth.Test/PublicClientAuthTest.cs -------------------------------------------------------------------------------- /src/AzureAuth/Ado/AuthParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Ado/AuthParameters.cs -------------------------------------------------------------------------------- /src/AzureAuth/Ado/Authorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Ado/Authorization.cs -------------------------------------------------------------------------------- /src/AzureAuth/Ado/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Ado/Constants.cs -------------------------------------------------------------------------------- /src/AzureAuth/Ado/PatFromEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Ado/PatFromEnv.cs -------------------------------------------------------------------------------- /src/AzureAuth/Ado/TokenFormattingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Ado/TokenFormattingExtensions.cs -------------------------------------------------------------------------------- /src/AzureAuth/Alias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Alias.cs -------------------------------------------------------------------------------- /src/AzureAuth/AuthFlowResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/AuthFlowResultExtensions.cs -------------------------------------------------------------------------------- /src/AzureAuth/AuthModeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/AuthModeExtensions.cs -------------------------------------------------------------------------------- /src/AzureAuth/AzureAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/AzureAuth.csproj -------------------------------------------------------------------------------- /src/AzureAuth/Commands/Ado/CommandPat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/Ado/CommandPat.cs -------------------------------------------------------------------------------- /src/AzureAuth/Commands/Ado/CommandToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/Ado/CommandToken.cs -------------------------------------------------------------------------------- /src/AzureAuth/Commands/Ado/Pat/CommandScopes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/Ado/Pat/CommandScopes.cs -------------------------------------------------------------------------------- /src/AzureAuth/Commands/CommandAad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/CommandAad.cs -------------------------------------------------------------------------------- /src/AzureAuth/Commands/CommandAdo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/CommandAdo.cs -------------------------------------------------------------------------------- /src/AzureAuth/Commands/CommandAzureAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/CommandAzureAuth.cs -------------------------------------------------------------------------------- /src/AzureAuth/Commands/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/CommandInfo.cs -------------------------------------------------------------------------------- /src/AzureAuth/Commands/Info/CommandInfoResetDeviceID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Commands/Info/CommandInfoResetDeviceID.cs -------------------------------------------------------------------------------- /src/AzureAuth/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Config.cs -------------------------------------------------------------------------------- /src/AzureAuth/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Constants.cs -------------------------------------------------------------------------------- /src/AzureAuth/EnvVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/EnvVars.cs -------------------------------------------------------------------------------- /src/AzureAuth/ExceptionListToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/ExceptionListToStringConverter.cs -------------------------------------------------------------------------------- /src/AzureAuth/IEnvExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/IEnvExtensions.cs -------------------------------------------------------------------------------- /src/AzureAuth/IPublicClientAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/IPublicClientAuth.cs -------------------------------------------------------------------------------- /src/AzureAuth/LegalFileChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/LegalFileChecker.cs -------------------------------------------------------------------------------- /src/AzureAuth/OutputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/OutputMode.cs -------------------------------------------------------------------------------- /src/AzureAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/Program.cs -------------------------------------------------------------------------------- /src/AzureAuth/PromptHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/PromptHint.cs -------------------------------------------------------------------------------- /src/AzureAuth/PublicClientAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/AzureAuth/PublicClientAuth.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Benchmark/BrokerBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Benchmark/BrokerBenchmark.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Benchmark/MSALWrapper.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Benchmark/MSALWrapper.Benchmark.csproj -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/AuthFlowExecutorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/AuthFlowExecutorTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/AuthFlowFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/AuthFlowFactoryTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/AuthFlowResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/AuthFlowResultTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/AuthFlowTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/AuthFlowTestBase.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/BrokerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/BrokerTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/CachedAuthTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/CachedAuthTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/DeviceCodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/DeviceCodeTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/IntegratedWindowsAuthenticationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/IntegratedWindowsAuthenticationTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthFlow/WebTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthFlow/WebTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/AuthModeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/AuthModeTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/ExceptionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/ExceptionExtensionsTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/LockedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/LockedTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/MSALWrapper.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/MSALWrapper.Test.csproj -------------------------------------------------------------------------------- /src/MSALWrapper.Test/MockAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/MockAccount.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/PCAWrapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/PCAWrapperTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/StopwatchTrackerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/StopwatchTrackerTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper.Test/TokenResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper.Test/TokenResultTest.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/AuthFlowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/AuthFlowBase.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/AuthFlowExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/AuthFlowExecutor.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/AuthFlowFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/AuthFlowFactory.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/AuthFlowResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/AuthFlowResult.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/Broker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/Broker.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/CachedAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/CachedAuth.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/DeviceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/DeviceCode.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/IAuthFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/IAuthFlow.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/IntegratedWindowsAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/IntegratedWindowsAuthentication.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/NullTokenResultException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/NullTokenResultException.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthFlow/Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthFlow/Web.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthMode.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthParameters.cs -------------------------------------------------------------------------------- /src/MSALWrapper/AuthenticationTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/AuthenticationTimeoutException.cs -------------------------------------------------------------------------------- /src/MSALWrapper/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/Constants.cs -------------------------------------------------------------------------------- /src/MSALWrapper/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/MSALWrapper/IMsalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/IMsalWrapper.cs -------------------------------------------------------------------------------- /src/MSALWrapper/IPCAWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/IPCAWrapper.cs -------------------------------------------------------------------------------- /src/MSALWrapper/IPlatformUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/IPlatformUtils.cs -------------------------------------------------------------------------------- /src/MSALWrapper/IStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/IStopwatch.cs -------------------------------------------------------------------------------- /src/MSALWrapper/JsonWebTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/JsonWebTokenExtensions.cs -------------------------------------------------------------------------------- /src/MSALWrapper/Locked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/Locked.cs -------------------------------------------------------------------------------- /src/MSALWrapper/MSALWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/MSALWrapper.csproj -------------------------------------------------------------------------------- /src/MSALWrapper/MsalHttpClientFactoryAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/MsalHttpClientFactoryAdaptor.cs -------------------------------------------------------------------------------- /src/MSALWrapper/MsalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/MsalWrapper.cs -------------------------------------------------------------------------------- /src/MSALWrapper/PCACache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/PCACache.cs -------------------------------------------------------------------------------- /src/MSALWrapper/PCAWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/PCAWrapper.cs -------------------------------------------------------------------------------- /src/MSALWrapper/PlatformUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/PlatformUtils.cs -------------------------------------------------------------------------------- /src/MSALWrapper/StopwatchTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/StopwatchTracker.cs -------------------------------------------------------------------------------- /src/MSALWrapper/TaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/TaskExecutor.cs -------------------------------------------------------------------------------- /src/MSALWrapper/TokenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/TokenResult.cs -------------------------------------------------------------------------------- /src/MSALWrapper/TokenResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/MSALWrapper/TokenResultExtensions.cs -------------------------------------------------------------------------------- /src/TestHelper/Fake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/TestHelper/Fake.cs -------------------------------------------------------------------------------- /src/TestHelper/MemoryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/TestHelper/MemoryLogger.cs -------------------------------------------------------------------------------- /src/TestHelper/TestHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/TestHelper/TestHelper.csproj -------------------------------------------------------------------------------- /src/stylecop/GlobalSuppressions.Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/stylecop/GlobalSuppressions.Test.cs -------------------------------------------------------------------------------- /src/stylecop/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/stylecop/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/stylecop/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/HEAD/src/stylecop/stylecop.json --------------------------------------------------------------------------------