dotnet-core/release-notes/2.2/2.2-known-issues.md
Vivek Mishra 3a2aa58329
Adding artifacts for 2.2 RTW and 3.0 Preview1 releases (#2097)
* Adding artifacts for 2.2 RTW and 3.0 Preview1 releases

* Fixed 2.2 rel notes
2018-12-04 08:19:48 -08:00

1 KiB

.NET Core 2.2 Known Issues

This document lists known issues for .NET Core 2.2 which may be encountered during usage.

ASP.NET Core Module

An update to the ASP.NET Core Module (ANCM) has released for .NET Core 2.2, but is not yet available. This update adds support for hosting applications in the IIS worker process. The updated ANCM is expected to be deployed to Azure App Services later in December 2018. In the meantime, the following workaround, applied to the projects csproj file, can be applied which will cause ASP .NET Core 2.2 projects to use the existing ASP.NET Core Module.

Change this section ...

  <PropertyGroup>
    <TargetFramework>netcoreapp2.2</TargetFramework>
    <AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
  </PropertyGroup>

to the following ...

  <PropertyGroup>
    <TargetFramework>netcoreapp2.2</TargetFramework>
    <AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
    <AspNetCoreModuleName>AspNetCoreModule</AspNetCoreModuleName>
  </PropertyGroup>