I tried searching a bit and didn't find an answer. Does the Razor View Engine work in Mono?
|
Yes, it does. I have it working with mono on Linux. You need mono 2.10.2+ from the stable sources from Then, you need to localcopy these assemblies into your app's bin directory (you take them from Visual Studio on Windows): System.Web.Mvc.dll Then, you might have to get rid of the following errors you might have made like this:
Error: Storage scopes cannot be created when _AppStart is executing. Edit Note that on 2.10 (Ubuntu 11.10), one needs to localcopy Note mod-mono, fastcgi-mono-server4 and xsp4 won't work correctly.
This is, because after the installation of mono3, it uses framework 4.5, but xsp, fastcgi-mono-server4 and mod-mono are not in the 4.5 GAC, only the 4.0 gac.
And if you use it via FastCGI (e.g. nginx), you also need this fix for TransmitFile for the chuncked_encoding bug |
|||||||||||||||
|
|
My guess is that you'll need to wait for the release of MVC3 (when it becomes open-source) before that can be answered perfectly. I'm sure the Mono team will make it work, though. |
|||
|
|
|
Mono 2.10 onwards fully supports MVC3 and Razor, albeit the Mono Project cannot currently ship Mono with an open-source implementation of the MVC3/Razor stack included (in the same way as MVC1 and MVC2 are included) just yet. From the Release Notes:
|
||||
|
|
|
It looks like we're getting there: http://gonzalo.name/blog/archive/2011/Jan-21.html Looks like it isn't in any of the published versions yet, but you can run it from source control. |
|||
|
|