File -> Open Website in MonoDevelop?

血红的双手。 提交于 2019-12-12 11:01:04

问题


I cannot open an existing website in MonoDevelop. I have tried various options with no success. Is there any way to do this?

Visual Studio has this and it works very well, but I'd like to try out MonoDevelop for my current project.


回答1:


MonoDevelop supports Visual Studio's Web Application Projects but not Web Sites.

  • Web Application projects are real MSBuild projects, compiling to a dll. This means you can write unit tests, have more control over the project structure, can catch more errors at compile time before deploying, and so on.

  • Web Sites are simply directories. Settings are stored in web.config, all compilation happens on the server. This means you can edit sites directly on the server (though I personally think this is bad practice).

There are many explanations on the net - here's one that seems good, though like me it's biased towards web application projects...



来源:https://stackoverflow.com/questions/4065820/file-open-website-in-monodevelop

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!