It seems like the inclusion support of CS-Script creates 1 assembly with all linked in files. In the solution we're trying to create, this may lead to a large number of dlls with larger DLL due to duplicate codes. Is it possible to have each script file generate it's own DLL to avoid memory bloat? eg: if a base class was very large, we'd want to avoid sub-classes from getting large as well.
Thanks!
--
You received this message because you are subscribed to the Google Groups "CS-Script" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cs-script+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Again if the base classes are compiled frequently , this would make outofmemory problems in the host app more prevalent. In our case we expect to have many sub classes that are the parent scripts. Those subclasses represent customizations that we want to operate independently of each other ( hence considered parent scripts).
Thoughts?