Dmitry Kaznacheev

Results 10 comments of Dmitry Kaznacheev

.Net framework 4.6.1 isn't compatible with .net standard 2.0. You need at least .Net framework 4.6.2. But i will add support for 4.6.1 version

@theglobe I checked it, #16 it is good but i need to add not just .NET Framework 4.6.1. I think i need to add all platforms which are use in...

Perhaps it makes sense to add the ability to define a custom resolver like `Func`

like this ```c# internal static void AddAutoDiscriminators(this DiscriminatorValues discriminatorValues, Type[] inherited) { foreach (var type in inherited) { if (discriminatorValues.Contains(type)) continue; discriminatorValues.AddType(type, resolver(type)); } } resolver = x => x.FullName;...

@RonSijm Then the general behavior will not change, but you can redefine what you need

@KarlGong Hi, sorry for not replying for a long time. Use `UseBaseTypeForCanConvert` in `JsonKnownTypesSettingsManager.DefaultDiscriminatorSettings` or `JsonDiscriminatorAttribute`. Ive added the flag because i don't want to change current behaviour but your...

What about that exception Unable to cast object of type 'Base' to type 'Derived'. can you pls provide exact code(just past all code here), cause its a bit weird why...

For now don't have time to figure this out, if u can figure this out and fix if needed ill merge and publish that quickly