What's New In .NET 6?

Here you can find information about what's included in the current release of .NET 6

Please note: .NET 6 is the LTS release. .NET 5 will be out of support soon. May, 2022. 

Solving DELETE  in .NET Core 6

Modify web.config and remove WebDAV module

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
    <modules>
            <remove name="WebDAVModule" />
        </modules>
      <handlers>      
            <remove name="WebDAV" />
            <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
            <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,PUT,DELETE,DEBUG" type="System.Web.Handlers.TransferRequestHandler" resourceType="Unspecified" requireAccess="Script"  preCondition="integratedMode,runtimeVersionv4.0" responseBufferLimit="0" />
            
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath=".\MvcWebPin.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
    </system.webServer>
  </location>
</configuration>
<!--ProjectGuid: 14f9ca8a-6532-40cc-81d6-9763351afd91-->