Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 75303 - mono does not seem to build or install class libs completely
Summary: mono does not seem to build or install class libs completely
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: dotnet project
URL: http://www.go-mono.com/class-status-S...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-12-22 05:20 UTC by Radek Podgorny
Modified: 2004-12-22 07:49 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Radek Podgorny 2004-12-22 05:20:12 UTC
I need to use the System.Runtime.Remoting.Channels.Tcp namespace in my apps. See the URL to see this namespace is already implemented (I've even found the implementation when browsing the mcs sources). But whenever I try to reference this namespace, I get this "cannot be found" error.

Using mono-1.0.5-r3. Ask me further if you need more info...
Comment 1 Peter Johanson (RETIRED) gentoo-dev 2004-12-22 07:27:20 UTC
Have you added -r:System.Runtime.Remoting when trying to build? Can you please attach a simple test case and the command you tried to use to compile it? Thanks.
Comment 2 Radek Podgorny 2004-12-22 07:41:02 UTC
-r:System.Runtime.Remoting did the trick, thanks...

Sorry for bothering you. Can you, please, point me to some place where I can read more about this? I've tried to look up the web but no success. I just can't understand why do I have to use -r:System.Runtime.Remoting but say -r:System or even -r:mscorlib isn't necessary... :-(
Comment 3 Peter Johanson (RETIRED) gentoo-dev 2004-12-22 07:49:51 UTC
System is part of the corlib, which is always referenced, and implicitly found. Anything stored in a seperate library (see all the libraries in /usr/lib/mono/1.0/) needs to be referenced explicitly when compiling. See the mono-project.com site, or any C# books for info.