Im trying to start a test asp.net mvc application written in mono, and using XSP as the server. The problem is that im getting an exception about missing system.web.mvc on application startup.

How can i get mono to load the assembly?

link|improve this question

70% accept rate
1  
Did you install ASP.NET MVC? – Matthew Flaschen Oct 27 '11 at 21:43
feedback

3 Answers

There's some info in the Mono FAQ that might be helpful:

How can I run ASP.NET-based applications with Mono?

You can read our Guide to port ASP.NET Applications with Mono.

Additionally, this is a very good guide on porting an ASP.NET MVC WebSite to Mono is a three part series blog that covers how to port an ASP.NET MVC website application to Mono:

link|improve this answer
feedback

Recently I opened an MVC project that was build with system.web.mvc proper. When I did the reference was listed but there was an arrow next to it that when dropped down said the ref could not be found. Adding and removing the reference resolved that issue. However; I was using IDependancyResolver from the MS System.Web.MVC and that does not seem to be in the Mono version.

link|improve this answer
feedback

Are you running on windows?

Do you have mono installed (not mono develop)?

Is your MVC project set to use mono runtimes or .NET runtimes?

I'm sure I had this problem a few weeks back and fixed it buy changing the target framework to be Mono / .NET 4.0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.