├── .gitignore ├── 1.ListConfiguration ├── 1.ListConfiguration.csproj ├── Function.cs ├── host.json └── local.settings.json └── AzureFunctionsConfigurationSample.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/azure-functions-configuration-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /1.ListConfiguration/1.ListConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/azure-functions-configuration-sample/HEAD/1.ListConfiguration/1.ListConfiguration.csproj -------------------------------------------------------------------------------- /1.ListConfiguration/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/azure-functions-configuration-sample/HEAD/1.ListConfiguration/Function.cs -------------------------------------------------------------------------------- /1.ListConfiguration/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/azure-functions-configuration-sample/HEAD/1.ListConfiguration/host.json -------------------------------------------------------------------------------- /1.ListConfiguration/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/azure-functions-configuration-sample/HEAD/1.ListConfiguration/local.settings.json -------------------------------------------------------------------------------- /AzureFunctionsConfigurationSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/azure-functions-configuration-sample/HEAD/AzureFunctionsConfigurationSample.sln --------------------------------------------------------------------------------