├── .gitignore ├── AzureCLI-Extractor.csproj ├── AzureCLI-Extractor.sln ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── images ├── adduser.png ├── gettoken.png ├── path.png └── token.png └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /AzureCLI-Extractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/AzureCLI-Extractor.csproj -------------------------------------------------------------------------------- /AzureCLI-Extractor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/AzureCLI-Extractor.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/README.md -------------------------------------------------------------------------------- /images/adduser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/images/adduser.png -------------------------------------------------------------------------------- /images/gettoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/images/gettoken.png -------------------------------------------------------------------------------- /images/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/images/path.png -------------------------------------------------------------------------------- /images/token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/images/token.png -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x09AL/AzureCLI-Extractor/HEAD/packages.config --------------------------------------------------------------------------------