Rhino.Testing icon indicating copy to clipboard operation
Rhino.Testing copied to clipboard

Interface parsing causes Rhinocommon to load early

Open ArchiBC opened this issue 2 months ago • 0 comments

When my library's interface contains RhinoCommon objects, and RhinoTest references that library and also inherits that interface, RhinoCommon gets loaded too early, causing a DLL not found error.

public interface IResult
{
    Curve Data { get; set; }
}

ArchiBC avatar Oct 30 '25 04:10 ArchiBC