Closed pawelbaran closed 3 months ago
Currently Create.Type method has the ability to match types based on their unqualified names, i.e. Type.FullName rather than Type.AssemblyQualifiedName: https://github.com/BHoM/BHoM_Engine/blob/f1e91381d8918eed3dd173d815f360c0bc9723ae/BHoM_Engine/Create/Type/Type.cs#L57
Create.Type
Type.FullName
Type.AssemblyQualifiedName
This is a powerful feature extremely helpful in case of multi-version builds producing many assemblies with same/similar types, e.g. Revit code. The same is needed in Create.EngineType to enable versioning of Revit engine assemblies.
Create.EngineType
FYI @adecler @IsakNaslundBh
Description:
Currently
Create.Type
method has the ability to match types based on their unqualified names, i.e.Type.FullName
rather thanType.AssemblyQualifiedName
: https://github.com/BHoM/BHoM_Engine/blob/f1e91381d8918eed3dd173d815f360c0bc9723ae/BHoM_Engine/Create/Type/Type.cs#L57This is a powerful feature extremely helpful in case of multi-version builds producing many assemblies with same/similar types, e.g. Revit code. The same is needed in
Create.EngineType
to enable versioning of Revit engine assemblies.FYI @adecler @IsakNaslundBh