[Mono-list] assembly problem. please help.

Victor Vitikan Victor Vitikan <vitikanvictor@gmail.com>
Tue, 8 Feb 2005 19:35:27 +0200


 hi!
 
i have a small (i hope it's small) problem.
 
i made a small remoting program with a client and a server. there is
no library included.
if i compile these two (server and client) with csc compiler under
windows with directives:
csc /debug+ /r:system.runtime.remoting.dll Server.cs  
and
csc /debug+ /r:Server.exe /r:system.runtime.remoting.dll Client.cs
everything is ok.
 
when i compile these two with mcs compiler with:
mcs -r:System.Runtime.Remoting.dll Server.cs
and
mcs -r:Server.exe -r:System.Runtime.Remoting.dll Client.cs
everything is also ok, the server starts without problems, but the
client can't find the assembly server which is supposed to be
server.exe. i think mono is looking for server.dll but this is not my
compile directive.
 
do you have, please, any ideea how to make this works?
 
thank you