The type or namespace name `Multimedia' could not be found (monodevelop)
I am compiling a .Net project on Linux, using monodevelop.
I get the following error:
The type or namespace name `Multimedia' could not be fou开发者_开发百科nd.
Which .Net library contains the Multimedia namespace, and what is its mono equivalent
[Edit]
I am having the same problem with a reference System.Deployment - which seems to be missing
What is the mono equivalent for System.Deployment (and which library contains that namespace?)
System.Deployment.Internal
exists as can be seen in the Mono docs here.
System.Deployment.Application does not seem to exist in Mono, but seems to be just for ClickOnce customization, so unless you need ClickOnce, you might be able to just remove any code that uses those classes.
I don't do Multimedia much so I'm not sure, but I can't remember seeing that namespace in the framework. Are you sure that that's not some other component/library that your project is using?
精彩评论