In RC2, we removed the single Get<T> overload, with the overall functionality still remaining but split into
GetValue<T> for primitives which support TypeConverter conversions.
Bind<T> for complex types, and collections.
configuration.Get<T>("<key>") becomes either:
configuration.GetValue<T>("key") or configuration.GetSection("key").Bind(myT)
In RC2, we removed the single
Get<T>overload, with the overall functionality still remaining but split intoGetValue<T>for primitives which support TypeConverter conversions.Bind<T>for complex types, and collections.configuration.Get<T>("<key>")becomes either:configuration.GetValue<T>("key")orconfiguration.GetSection("key").Bind(myT)