microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.AspNetCore.DevTools/Extensions/ConfigurationManager.cs
14lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using Microsoft.Extensions.Configuration; |
| 5 | |
| 6 | namespace Microsoft.Teams.Plugins.AspNetCore.DevTools.Extensions; |
| 7 | |
| 8 | public static class ConfigurationManagerExtensions |
| 9 | { |
| 10 | public static TeamsDevToolsSettings GetTeamsDevTools(this IConfigurationManager manager) |
| 11 | { |
| 12 | return manager.GetSection("Teams").GetSection("Plugins.DevTools").Get<TeamsDevToolsSettings>() ?? new(); |
| 13 | } |
| 14 | } |