= German =
Der Ordner "https" bzw. die darin für andere Frameworks enthaltenen ThirdParty
Assemblies, die in einer Server Anwendung für HTTPS benötigt werden, werden für
das Zielframework "netcoreapp3.1" nicht ausgeliefert. Alle benötigten Assemblies
sind Teil des Frameworks für ASP.NET Core Anwendungen. Für Server Anwendungen,
die HTTPS verwenden sollen muss der folgende Textblock in die Projektdatei
(manuell) eingefügt werden:

  <ItemGroup>
    <FrameworkReference Include="Microsoft.AspNetCore.App" />
  </ItemGroup>

= English =
The folder "https" or the ThirdParty assemblies contained therein for other
frameworks, which are required in a server application for HTTPS, are not
supplied for the target framework "netcoreapp3.1". All required assemblies are
part of the framework for ASP.NET core applications. For server applications
that are to use HTTPS, the following text block must be inserted into the
project file (manually):

  <ItemGroup>
    <FrameworkReference Include="Microsoft.AspNetCore.App" />
  </ItemGroup>
