diff --git a/aspnetcore/fundamentals/native-aot.md b/aspnetcore/fundamentals/native-aot.md index 1d4c2995bf..5dc842d1b7 100644 --- a/aspnetcore/fundamentals/native-aot.md +++ b/aspnetcore/fundamentals/native-aot.md @@ -5,7 +5,7 @@ description: Learn about ASP.NET Core support for native AOT monikerRange: '>= aspnetcore-8.0' ms.author: midenn ms.custom: mvc -ms.date: 4/10/2023 +ms.date: 5/5/2023 uid: fundamentals/native-aot --- # ASP.NET Core support for native AOT @@ -244,7 +244,7 @@ The : :::code language="csharp" source="~/fundamentals/aot/samples/Program.cs" highlight="4"::: -Because unused code is trimmed during publishing for native AOT, the app can't use unbounded reflection at runtime. Source generators are used to produce code to avoid the need for reflection. In some cases source generators produce code optimized for AOT even when a generator is not required. To view source code that is generated based on the code in `Program.cs` add the `true` property to `MyFirstAotWebApi.csproj`: +Because unused code is trimmed during publishing for native AOT, the app can't use unbounded reflection at runtime. Source generators are used to produce code to avoid the need for reflection. In some cases source generators produce code optimized for AOT even when a generator is not required. To view source code that is generated based on the code in `Program.cs` add the [`true`](/dotnet/csharp/roslyn-sdk/source-generators-overview) property to `MyFirstAotWebApi.csproj`: ```xml