dotnet / extensions

This repository contains a suite of libraries that provide facilities commonly needed when creating production-ready applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Set IsAotCompatible=true for Microsoft.AspNetCore.HeaderParsing

eerhardt opened this issue · comments

With #4871 all projects in src/Libraries were marked as AOT compatible, so the trim and AOT analyzers run during the build.

The only library that couldn't be marked is Microsoft.AspNetCore.HeaderParsing. This is because it is blocked on dotnet/runtime#94547.

<!-- blocked by https://github.com/dotnet/runtime/issues/94547 -->
<IsAotCompatible>false</IsAotCompatible>

When the underlying runtime bug is fixed we should enable the config source generator in this library and mark it as AOT compatible.