T TJS Mar 8, 2004 #1 when creating a command line to compile code into a dll, how does one determine which references ( /r:...) are to be added ?
when creating a command line to compile code into a dll, how does one determine which references ( /r:...) are to be added ?
D Dennis Homann Mar 10, 2004 #2 Example: csc /target:library /out:mylib.dll /r:myref1.dll;myref2.dll;<more> *.cs - Dennis