Create application C# with Rhino.Inside + Grasshopper

Hi,
I want integrate Rhino with grasshopper in C# application.

I use rhino inside nuget package for 4.8 .net framework.
I run sample with only rhino inside and it works fine.

But when i use Grasshopper fonction i have File not found exception can load Grasshopper librairy.
Version=7.0.20314.3000, Culture=neutral, PublicKeyToken=dda4f5ec2cd80803’

Version Rhino 8, rhino inside 7.0.0 with .net 4.8 framework.

What i am missing ?
(sorry for my english).

Welcome to the forum @Julien6 :slight_smile: !

Can you tell us what you’d like to achieve? You could just create a Grasshopper Plugin which would allow you to manipulate Rhino and GH.

No, i want create an application outside rhinoceros.
My application use GH script and Rhinoceros view only.

What are you trying to create though?

Hi @Julien6,

If your .NET host application is using .NET Framework 4.8, then try creating RhinoCore like this;

using (new RhinoCore(new string[] { "/NOSPLASH", "/NETFX" }, WindowStyle.Hidden ))

– Dale

Great i works and solve all my problems!!
can you explain the options
“/NOSPLASH” => dont show rhino start screen?
, “/NETFX” => ?
Where i can see the different options ?
Thanks for your help.