├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── DirectLink.md ├── GettingStarted.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md └── images ├── ExtensionOverview.PNG ├── ExtensionTreeExplorer.PNG ├── InsatlledExtension.PNG └── SignInCombined.png /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DirectLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/DirectLink.md -------------------------------------------------------------------------------- /GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/GettingStarted.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /images/ExtensionOverview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/images/ExtensionOverview.PNG -------------------------------------------------------------------------------- /images/ExtensionTreeExplorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/images/ExtensionTreeExplorer.PNG -------------------------------------------------------------------------------- /images/InsatlledExtension.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/images/InsatlledExtension.PNG -------------------------------------------------------------------------------- /images/SignInCombined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-app-configuration-se-extension/HEAD/images/SignInCombined.png --------------------------------------------------------------------------------