Issues building ghpython

To clarify what I meant.

Let’s say I build(compile) this:

Now I have both the new ghpython component and the old one.

Can I use the compiling-sdk.gh from this thread:

In order to compile ghpython_old_component?

Reasons:

  1. I want to not have to use clr.addreference for
    • DotNetZip.dll
    • MathNet.Numerics.dll
    • System.Xml.ReaderWriter.dll
    • TensorFlowSharp
    • etc.
  2. I would like to make
import Grasshopper, GhPython

become this (as default)

import Grasshopper as gh
import GhPython
import scriptcontext as sc
from Grasshopper.Kernel import GH_RuntimeMessageLevel as RML
  1. Another thing that I requested before is to make SDK mode as default, you said to make it another UserObject, could be done by simply changing the code.
  2. Another one, re-arranging the code automatically when you click SDK mode. You know moving all imports together and moving the description comment on top, these kind of things.

If all of the above are not possible due to incompatibility, are you planning on releasing the source of the new ghpython so I can try to make these changes myself?