We are using ConfigurationBinder to populate the value from the configuration section, but looks like the converter is not picked up (probably because it's defined as internal) :

Next call converter.CanConvertFrom(typeof(string)) returns false and the converter is not invoked.
Snippet from ConfigurationBinder :
TypeConverter converter = TypeDescriptor.GetConverter(type);
if (converter.CanConvertFrom(typeof(string))) {
...
}
Please make the ByteSizeTypeConverter as public .
Building with sdk 7.0, targeting 6.0
We are using
ConfigurationBinderto populate the value from the configuration section, but looks like the converter is not picked up (probably because it's defined as internal) :Next call
converter.CanConvertFrom(typeof(string))returnsfalseand the converter is not invoked.Snippet from
ConfigurationBinder:Please make the
ByteSizeTypeConverteras public .Building with sdk 7.0, targeting 6.0