Use XSP4 in MonoDevelop

I'm currently trying to run an MVC 2 application (.NET 4.0) on Mono, but I am having problems with the XSP server.

Everything is fine when I click the Run button in MonoDevelop. My application starts using the correct version of ASP.NET:
Mono Runtime Version: 2.8 (tarball Tue Oct 5 14:16:19 MDT 2010); ASP.NET Version: 4.0.30319.1

When I try to debug my application, MonoDevelop always uses the wrong version of ASP.NET:
Mono Runtime Version: 2.8 (tarball Tue Oct 5 14:16:19 MDT 2010); ASP.NET Version: 2.0.50727.1433

Does anyone know how I can change this?

Regards,
Philip

+3
source share
1 answer

The current trunk does not use xsp4 during debugging.

I clicked my thread on http://github.com/silk/monodevelop/tree/xsp4 with this little change.

The monodevelop master branch now supports xsp4 for debugging on both Linux and Windows.

+2
source

Source: https://habr.com/ru/post/1768886/


All Articles