Releases: mcneel/compat
Releases · mcneel/compat
Taking shape
Usage: Compat.exe plugin.dll api1.dll api2.dll ...
After testing the previous release more rigorously I'm slightly afraid to say this, but I think this one works.
Running it against the included test project (below) yields good results!
public class Class1
{
Class1() // mscorlib (.ctor, ignore)
{
var str = "Hello World!"; // mscorlib (ignore, possibly optimised out by the compiler...)
var mesh = new Point3d(0.0, 0.0, 0.0); // exists in rhinocommon sr8
Color4f.FromArgb(0.0f, 0.0f, 0.0f, 0.0f); // introduced in sr11 (?)
}
}