.NET Updates August 2021

.NET Updates August 2021

Heute hat Microsoft die .NET Updates von August 2021 auf ihrem Blogpost veröffentlicht.

  • Fix CVE-2021-34485: .NET Core Information Disclosure Vulnerability
  • Fix CVE-2021-26423: .NET Core Denial of Service Vulnerability
  • Fix CVE-2021-34532: ASP.NET Core Information Disclosure Vulnerability

Hinweis: in diesen Blog Post hat Microsoft auch erneut .NET Core 2.1 End of life erwähnt!

Read Blog Post
Plugin Mechanism with Parts in ASP.NET Core

Plugin Mechanism with Parts in ASP.NET Core

A plugin-like mechanism is already built into ASP.NET Core and is called Parts or Application Parts .

In principle, it is a discovery mechanism to be able to use Razor or MVC components such as controllers from other assemblies, for example. Therefore, Application Parts are also particularly well suited for Domain Driven Design (DDD) separation of application components in ASP.NET Core. A DDD abstraction is the most used way of these Application Parts in my applications and architectures.

Read Blog Post