Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
UWP Hololens build
#2
Please replace the following function inside /Packages/DevTools/Extensions/Extension.cs:

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
       }

That should fix it!
Reply


Messages In This Thread
UWP Hololens build - by Autarkis - 07-25-2017, 09:51 PM
RE: UWP Hololens build - by Jake - 07-29-2017, 05:48 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Invisible generated meshes in build itsGama 5 10 06-08-2023, 11:53 AM
Last Post: _Aka_
  Missing Loader errors after build FanManPro 8 9 01-20-2023, 11:45 AM
Last Post: _Aka_
  Efficiently chopping up a build extrusion? blabz2007 2 9 08-05-2022, 10:43 AM
Last Post: _Aka_
  Is Curvy splines appropriate to build city streets? atantoine 3 263 11-17-2021, 12:03 PM
Last Post: _Aka_

Forum Jump: