【Azure 应用服务】App Service 的.NET Version选择为.NET6,是否可以同时支持运行ASP.NET V4.8的应用呢?

简介: 【Azure 应用服务】App Service 的.NET Version选择为.NET6,是否可以同时支持运行ASP.NET V4.8的应用呢?

问题描述

App Service 的.NET Version选择为.NET6,是否可以同时支持运行ASP.NET V4.8的应用呢?

问题解答

答案是可以的,Azure App Service .NET可以同时支持多种.NET框架。因为在Azure App Service Window 环境中,已经安装了所有的版本SDK。

可以在Azure门户上的高级工具(Kudu:https://<yourappservicename>.scm.chinacloudsites.cn/)中的 Debug Console->CMD,  进入到D:\Program Files\dotnet\sdk目录 或者 D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\ 目录,就可以查看到平台目前支持的版本号。

#查看 ASP.NET SDK版本文件
dir "D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\"
#查看 .NET Core 版本信息
dir "C:\Program Files\dotnet\sdk"
#或者
dotnet --info

测试动画

PS: 如果要同时部署多个应用,需要通过 虚拟目录 把不同的应用分别部署到不同目录下即可。(参考以往博文:https://www.cnblogs.com/lulight/p/15778747.html

 

 

参考文档

显示受支持的 .NET Core 运行时版本:https://docs.azure.cn/zh-cn/app-service/configure-language-dotnetcore?pivots=platform-windows#show-supported-net-core-runtime-versions

显示受支持的 .NET Framework 运行时版本:https://docs.azure.cn/zh-cn/app-service/configure-language-dotnet-framework

 

相关文章
|
29天前
|
缓存 容器 Perl
【Azure Container App】Container Apps 设置延迟删除 (terminationGracePeriodSeconds) 的解释
terminationGracePeriodSeconds : 这个参数的定义是从pod收到terminated signal到最终shutdown的最大时间,这段时间是给pod中的application 缓冲时间用来处理链接关闭,应用清理缓存的;并不是从idel 到 pod被shutdown之间的时间;且是最大时间,意味着如果application 已经gracefully shutdown,POD可能被提前terminated.
|
1月前
|
开发框架 监控 .NET
【Azure App Service】部署在App Service上的.NET应用内存消耗不能超过2GB的情况分析
x64 dotnet runtime is not installed on the app service by default. Since we had the app service running in x64, it was proxying the request to a 32 bit dotnet process which was throwing an OutOfMemoryException with requests >100MB. It worked on the IaaS servers because we had the x64 runtime install
|
1月前
|
Java 开发工具 Windows
【Azure App Service】在App Service中调用Stroage SDK上传文件时遇见 System.OutOfMemoryException
System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
|
1月前
|
安全 Apache 开发工具
【Azure App Service】在App Service上关于OpenSSH的CVE2024-6387漏洞解答
CVE2024-6387 是远程访问漏洞,攻击者通过不安全的OpenSSh版本可以进行远程代码执行。CVE-2024-6387漏洞攻击仅应用于OpenSSH服务器,而App Service Runtime中并未使用OpenSSH,不会被远程方式攻击,所以OpenSSH并不会对应用造成安全风险。同时,如果App Service的系统为Windows,不会受远程漏洞影响!
|
3月前
|
开发框架 前端开发 JavaScript
ASP.NET MVC 教程
ASP.NET 是一个使用 HTML、CSS、JavaScript 和服务器脚本创建网页和网站的开发框架。
46 7
|
3月前
|
存储 开发框架 前端开发
ASP.NET MVC 迅速集成 SignalR
ASP.NET MVC 迅速集成 SignalR
74 0
|
4月前
|
开发框架 前端开发 .NET
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
55 0
|
4月前
|
开发框架 前端开发 安全
ASP.NET MVC 如何使用 Form Authentication?
ASP.NET MVC 如何使用 Form Authentication?
|
4月前
|
开发框架 .NET
Asp.Net Core 使用X.PagedList.Mvc.Core分页 & 搜索
Asp.Net Core 使用X.PagedList.Mvc.Core分页 & 搜索
141 0