Can I use Linux/Mono to deploy aspnet web application?(我可以使用 Linux/Mono 来部署 aspnet Web 应用程序吗?)
问题描述
I have a C#/ASP.NET application which works on windows with IIS. But recently I'm tempted to switch to Linux/Mono. It comes up with some questions:
Can I run my Visual Studio projects and source codes in Mono correctly?
My clients use IIS for ASP.NET . Does my migration affect them? In other words does my Mono projects runs in IIS without any change or problem?
Can I host Mono ASP.NET web projects in Apache without any problem?
Can I use my skills in ASP.NET web forms in Mono exactly?
waiting for your valuable suggestions and comments
Yes, broadly speaking you can do all that you are asking.
A good starting point is the ASP.NET page on the Mono website, it covers those questions in quite a lot of detail.
Answers to specific questions:
Can I run my Visual Studio projects and source codes in Mono correctly?
Generally, you should not need to change anything much, but it is possible for you to write platform specific code for ASP.NET (i.e. using P/Invoke or looking for C:Windows). Mono has a migration analyser that can check if this affects you. You can run Apache and Mono on Windows too if you like.
My clients use IIS for ASP.NET . Does my migration affect them? In other words does my Mono projects runs in IIS without any change or problem?
You can (and should) test your code on every platform you deploy on, but it should be easy to write code that can be deployed to mono too.
Can I host Mono ASP.NET web projects in Apache without any problem?
Yes, use mod_mono for Apache.
Can I use my skills in ASP.NET web forms in Mono exactly?
Yes, Mono implements ASP.NET 2.0 web forms, exact details can be seen here
这篇关于我可以使用 Linux/Mono 来部署 aspnet Web 应用程序吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我可以使用 Linux/Mono 来部署 aspnet Web 应用程序吗?


- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01