fix #199: Remove strongly-typed Get<T> support from configuration

This commit is contained in:
Kirthi Krishnamraju 2015-05-14 23:18:59 -07:00
Родитель c5f6e52a13
Коммит 14b18ddc57
1 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -11,13 +11,6 @@ namespace Microsoft.Framework.ConfigurationModel
{
public static class ConfigurationExtensions
{
#if NET45 || DNX451 || DNXCORE50
public static T Get<T>(this IConfiguration configuration, string key)
{
return (T)Convert.ChangeType(configuration.Get(key), typeof(T));
}
#endif
#if NET45 || DNX451 || DNXCORE50
/// <summary>
/// Adds the INI configuration source at <paramref name="path"/> to <paramref name="configuraton"/>.