.NET Core 3.0 Preview 6 发布 新增用于 ARM64 的 Alpine Docker 镜像

下载地址:

(支持 , macOS 和 Linux)

WPF 和 Windows Forms 更新

WPF 团队现已将。实际上,他们刚刚。对于熟悉 WPF 的开发者来说,这些程序集名称应该非常熟悉。

Alpine Docker 镜像

Docker 镜像现在可用于 ARM64 上的 .NET Core 和 ASP.NET Core,它们之前只适用于 x64 平台。

以下的镜像可用于Dockerfile, 如下所示使用docker pull 的方式即可:

  • docker pull mcr.microsoft.com/dotnet/core/runtime:3.0-alpine-arm64v8

  • docker pull mcr.microsoft.com/dotnet/core/aspnet:3.0-alpine-arm64v8

在 HttpClient 中提供对 HTTP/2 的支持

HTTP/2 是 HTTP 协议的主要修订版。.NET Core 3.0 的HttpClient 中现已添加对 HTTP/2 请求的支持。虽然默认值仍为 HTTP/1.1,但我们可以通过在 HTTP 请求消息上设置版本来选择使用 HTTP/2。

var client = new HttpClient() { BaseAddress = new Uri("https://localhost:5001") };// HTTP/1.1 requestusing (var response = await client.GetAsync("/")){ Console.WriteLine(response.Content);}// HTTP/2 requestusing (var request = new HttpRequestMessage(HttpMethod.Get, "/") { Version = new Version(2, 0) })using (var response = await client.SendAsync(request)){ Console.WriteLine(response.Content);}

或者可以通过设置DefaultRequestVersion属性以在HttpClient中默认发送 HTTP/2 请求。

var client = new HttpClient(){ BaseAddress = new Uri("https://localhost:5001"), DefaultRequestVersion = new Version(2, 0)};// Defaults to HTTP/2using (var response = await client.GetAsync("/")){ Console.WriteLine(response.Content);}

其他更新还包括对事件管道的改进、使用 ReadyToRun 镜像优化 .NET Core 应用程序以及针对跨平台/跨架构编译的改进。。