You are on page 1of 1

Grofit [10:39 AM]

I appreciate you would probably need all those dlls for your stuff to function, but
surely you have some entry point or something?

like I have an app with a few dlls but there is only a couple of methods I actually
use, the rest is just infrastructure to let those methods work
so ideally you want to do something like
```private static generatePreviewFunction = func({
assemblyFile: path.join(assemblyDir, 'MyEntryPoint.dll'),
typeName: 'Fully.Classified.Class',
methodName: 'MethodToInvoke'
});
that way in js I can just do `generatePreviewFunction(data, callback)`
and that `MyEntryPoint.dll` will automatically include any other required dlls in
the same area (and blow up if it cant resolve them)

You might also like