Hi All,

I am having a rather peculiar issue.
I have a library let's call it A which depends on two other libraries
B and C.


Both B and C are installed in the GAC. I am trying to compile the
sourcecode for A but i'd like to reference the GAC for the library
dependencies. Do you know how I can do that from the command line?


This is what I was trying:



> csc.exe /t:library /out:A.dll /r:B.dll,C.dll A.cs


this method only works if i specify an aboslute path for B and C. What
i want is to have those assemblies not be references but like a linked
resource.. Any ideas...?

Thanks
Val