creating a command line to compile code into a dll

  • Thread starter Thread starter TJS
  • Start date Start date
T

TJS

when creating a command line to compile code into a dll, how does one
determine which references ( /r:...) are to be added ?
 
Example:

csc /target:library /out:mylib.dll /r:myref1.dll;myref2.dll;<more> *.cs

- Dennis
 
Back
Top