Which version of the .NET Framework is IIS using for my AppPool?(IIS 将哪个版本的 .NET Framework 用于我的 AppPool?)
问题描述
.Net Framework 4.5 安装在我的机器和 IIS 应用程序池上,我将 .NET CLR 版本设置为 4.0.
我的问题是在这个 IIS 站点中运行 .NET 代码时,它使用的是哪个框架版本:4.0 还是 4.5?
请看下面的屏幕截图.
AppPool 的 .NET CLR 版本与 .NET Framework 版本不同.
.NET CLR 4.0 版是以下 .NET Framework 版本的 CLR 基础:
- 4
- 4.5(包括4.5.1和4.5.2)
- 4.6(包括 4.6.1 和 4.6.2 预览版)
因此,拥有 .NET CLR 版本 4.0 仅意味着您支持上述框架,这些框架将在其部署的框架版本下运行.
来源:https://docs.microsoft.com/zh-cn/dotnet/standard/clr#clr-versions
2020 年 2 月更新:
这里是 CLR 到 .NET Framework 版本的完整映射,基于此官方文档.https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/versions-and-dependencies#version-information
<块引用>CLR 1.0
.NET 框架 1.0
<小时><块引用>
CLR 1.1
.NET 框架 1.1
<小时><块引用>
CLR 2.0
.NET 框架 2.0
.NET 框架 3.0
.NET 框架 3.5
<小时><块引用>
CLR 4
.NET 框架 4
.NET 框架 4.5
.NET 框架 4.5.1
.NET 框架 4.5.2
.NET 框架 4.6
.NET 框架 4.6.1
.NET 框架 4.6.2
.NET 框架 4.7
.NET 框架 4.7.1
.NET 框架 4.7.2
.NET 框架 4.8
.Net Framework 4.5 was installed on my machine and on the IIS Application Pool, I set the .NET CLR version to 4.0.
My question is when running .NET code in this IIS site, which framework version is it using: 4.0 or 4.5 ?
Please see below screen shots.
The AppPool's .NET CLR Version is different from the .NET Framework Version.
The .NET CLR Version 4.0 is the CLR base for the following .NET Framework Versions:
- 4
- 4.5 (including 4.5.1 and 4.5.2)
- 4.6 (including 4.6.1 and 4.6.2 Preview)
So having a .NET CLR Version of 4.0 just means you support the above Frameworks, which will run under their deployed framework version.
Source: https://docs.microsoft.com/en-us/dotnet/standard/clr#clr-versions
Update Feb 2020:
Here is a full mapping of CLR to .NET Framework versions, based off this official documentation. https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/versions-and-dependencies#version-information
CLR 1.0
.NET Framework 1.0
CLR 1.1
.NET Framework 1.1
CLR 2.0
.NET Framework 2.0
.NET Framework 3.0
.NET Framework 3.5
CLR 4
.NET Framework 4
.NET Framework 4.5
.NET Framework 4.5.1
.NET Framework 4.5.2
.NET Framework 4.6
.NET Framework 4.6.1
.NET Framework 4.6.2
.NET Framework 4.7
.NET Framework 4.7.1
.NET Framework 4.7.2
.NET Framework 4.8
这篇关于IIS 将哪个版本的 .NET Framework 用于我的 AppPool?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:IIS 将哪个版本的 .NET Framework 用于我的 AppPool?
基础教程推荐
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01