Manage assemblies in C# component

One other script editor question:
In rhino 7 C# script editor we could right click on the editor and manage assemblies.
Is there a way to do this in the Rhino8 GH C# script editor?
Thanks!

You can add a directive at the top of your script. Like this:

#r "C:\path\assembly.dll"
1 Like

Hi! I think that information used to be shown somewhere in the script editor before. But I cannot find it anymore. Can you remind me where it is? My environment is v8.4, windows 11.

Also, I think this information is very hard to notice. Or, the directive does not look like a directive for C#. I initially thought an instruction for Pyhton showed up in the wrong place.

#r” is a standard script directive for dotnet.

You can also reference nuget packages. For example:

#r "nuget: morelinq, 4.1.0"