ASP.NET Core 3.0

Eintrag zuletzt aktualisiert am: 12.03.2020

ASP.NET Core 3.0 ist der Nachfolger von ASP.NET Core 2.2.

Erscheinungstermin: 23.9.2019

Neuerungen:
  • Single Page Web Applications mit Server-Side-Blazor
  • JSON.NET wird zu Gunsten einer eigenen JSON-Implementierung entfernt

Kompatibilität mit neuem Paket Microsoft.AspNetCore.Mvc.NewtonsoftJson: services.AddMvc().AddNewtonsoftJson();
  • Keine Laufzeitkompilierung mehr für Views und Pages

Kompatibilität mit neuem Paket (Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation): services.AddMvc().AddMvcRazorRuntimeCompilation();
  • Blockierung von synchronen IO-APIs wie HttpRequest.Body.Read, HttpResponse.Body.Write, Stream.Flush usw.;M Reaktivierung per Code möglich: syncIOFeature.AllowSynchronousIO = true;
  • ASP.NET SignalR client-to-server streaming