In my project, I want to reuse code for multiple binaries (.exe).
So, I decided to create a .dll from some sources and include it in my .exe application thanks to csc.exe.
OK, that works.
But now I want to add a new level: I would like to build some clean modules, and then build my .dll, which includes all the network modules created earlier.
Is it possible? How?
source share