This hotfix fixes an incompatibility with UWP10 build:
In Packages\DevTools\Extensions\Extensions.cs, replace IsArrayOrList(this Type type)
In Packages\DevTools\Extensions\Extensions.cs, replace IsArrayOrList(this Type type)
Code:
public static bool IsArrayOrList(this Type type)
{
#if NETFX_CORE
return (type.IsArray || (type.GetTypeInfo().IsGenericType && type.GetGenericTypeDefinition() == typeof(List<>)));
#else
return (type.IsArray || (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(List<>)));
#endif
}