Native AOT capitalization (#33498)

pull/33500/head
Luke Latham 2024-08-30 09:26:31 -04:00 committed by GitHub
parent d9671da9fb
commit cfea71db51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ The new built-in OpenAPI support in ASP.NET Core now also supports trimming and
### Get started
Create a new ASP.NET Core Web API (native AOT) project.
Create a new ASP.NET Core Web API (Native AOT) project.
```console
dotnet new webapiaot

View File

@ -1,6 +1,6 @@
### SignalR supports trimming and native AOT
### SignalR supports trimming and Native AOT
Continuing the [native AOT journey](xref:fundamentals/native-aot) started in .NET 8, we have enabled trimming and native ahead-of-time (AOT) compilation support for both SignalR client and server scenarios. You can now take advantage of the performance benefits of using native AOT in applications that use SignalR for real-time web communications.
Continuing the [Native AOT journey](xref:fundamentals/native-aot) started in .NET 8, we have enabled trimming and native ahead-of-time (AOT) compilation support for both SignalR client and server scenarios. You can now take advantage of the performance benefits of using Native AOT in applications that use SignalR for real-time web communications.
#### Getting started