azure - Azure-Storage-Net 更改日志中 CoreCLR、PCL 和 WinRT 的重要性是什么

标签 azure windows-runtime azure-storage coreclr

我正在检查 here 的 Windows Azure Storage nuget 更改日志。我没有了解 CoreCLRPCLWinRT 的用法。

例如

Changes in 7.2.0 :

  • All (CoreCLR): NetStandard target framework changed to netstandard1.3
  • All (PCL): Removed support for PCL in favor of NetStandard GA release
  • ...

Changes in 7.1.2 :

  • ...
  • All (WinRT): Fixed a bug where HttpClient default timeout caused unhandled TaskCancellation exceptions.
  • ...

在 google 上进行简单搜索后发现,CoreCLR 是一个 .NET 执行引擎WinRT 代表 Windows 运行时>。我不知道 PCL 是什么。

那么简单来说,这些在变更日志中的重要性是什么?

最佳答案

这些代表能够在不同版本的 .Net 上运行的软件包版本:

  • WinRT 用于 Windows 应用商店应用,它使用 .Net 的精简版本
  • PCL 是可移植类库 (Portable Class Library) 的缩写,这是从单个库定位多个版本的 .Net 的旧方法
  • NetStandard是一种针对 .Net 多个版本的新方法,它与 .Net Core 一起出现,.Net Core 是 .Net 的新模块化跨平台版本
  • CoreCLR 是 .Net Core 使用的运行时,尽管将 NetStandard 版本库的更改标记为“CoreCLR”会令人困惑

关于azure - Azure-Storage-Net 更改日志中 CoreCLR、PCL 和 WinRT 的重要性是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38917622/

相关文章:

windows-runtime - WinJS 窗口大小

Azure 存储 vhd

azure - centos azure 虚拟机防火墙损坏

azure - Azure BLOB 表服务的效率有多高?

C#/WinRT : How to save image to file

c# - UWP - 绑定(bind)枚举差异

Azure 存储错误 : "The specified blob already exists", 但事实并非如此!

Azure - 403 错误 - 将大量存储帐户 blob 复制到即用即付帐户上的另一个存储帐户

azure 功能身份验证

Azure:是否可以在非 MS 虚拟机上使用 HTTPS?