How to Retrieve License URL and Type for RhinoCommon and Rhino.Inside?

Hi everyone,

I’m working on a plugin that depends on both RhinoCommon and Rhino.Inside. I need to identify their license type and a license URL for documentation and compliance purposes.

From the .nuspec file for RhinoCommon, I found the following metadata:

> <?xml version="1.0" encoding="utf-8"?>  
> <package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">  
>   <metadata>  
>     <id>RhinoCommon</id>  
>     <version>7.13.21348.13001</version>  
>     <title>RhinoCommon SDK for Rhino WIP for Windows</title>  
>     <authors>Robert McNeel and Associates</authors>  
>     <owners>mcneel</owners>  
>     <requireLicenseAcceptance>false</requireLicenseAcceptance>  
>     <icon>rhinocommon.png</icon>  
>     <projectUrl>http://developer.rhino3d.com/guides/rhinocommon/</projectUrl>  
>     <description>RhinoCommon is the cross-platform .NET plugin SDK for Rhino</description>  
>     <copyright>Copyright (c) 1997-2020 Robert McNeel and Associates</copyright>  
>     <tags>rhino3d</tags>  
>     <dependencies>  
>       <group targetFramework=".NETFramework4.8" />  
>     </dependencies>  
>   </metadata>  
> </package>

The file does not include a licenseUrl or any explicit mention of the license type.

  • How can I find the exact license type for both RhinoCommon and Rhino.Inside?
  • Is there a specific license URL available for these libraries?

The license URL is https://developer.rhino3d.com/license/

1 Like

@nathanletwory Thank you!