c# - Separate dll for class library -



c# - Separate dll for class library -

i have class library multiple cs files, when build it, generates dll file reference in project. okay when alter 1 cs file, suppose have changes in multiple file wish particular alter in dll rather unnecessary cs files.

as alternative

we can create separate class library , hence separate dll every classes, lastly alternative guess

use preprocessor directives like

#define vc7 //... #if debug console.writeline("debug build"); #elif vc7 console.writeline("visual studio 7"); #endif

but need have thing in designer too

so best solution??

tfs (or other version command system) can this. set tfs build server , check in files ready compiled. there many ways set up. research.

start reading on continuous build and/or continuous integration, read on how various version command systems implement that.

c# .net

Comments

Popular posts from this blog

web services - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer -

Accessing MATLAB's unicode strings from C -

javascript - mongodb won't find my schema method in nested container -