From 5f24330ecb8cbdc87c381ad28ad5f9527b70cc9c Mon Sep 17 00:00:00 2001 From: Mike Kistler Date: Wed, 13 Nov 2024 06:37:45 -0800 Subject: [PATCH] Drop prerelease flags now that .NET 9 has shipped (#34096) --- aspnetcore/fundamentals/openapi/aspnetcore-openapi.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md b/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md index d047c39d3d..a6f8187b71 100644 --- a/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md +++ b/aspnetcore/fundamentals/openapi/aspnetcore-openapi.md @@ -29,7 +29,7 @@ Install the `Microsoft.AspNetCore.OpenApi` package: Run the following command from the **Package Manager Console**: ```powershell - Install-Package Microsoft.AspNetCore.OpenApi -IncludePrerelease + Install-Package Microsoft.AspNetCore.OpenApi ``` ### [.NET CLI](#tab/net-cli) @@ -37,7 +37,7 @@ Run the following command from the **Package Manager Console**: Run the following command: ```dotnetcli -dotnet add package Microsoft.AspNetCore.OpenApi --prerelease +dotnet add package Microsoft.AspNetCore.OpenApi ``` --- @@ -133,7 +133,7 @@ To add support for generating OpenAPI documents at build time, install the `Micr Run the following command from the **Package Manager Console**: ```powershell - Install-Package Microsoft.Extensions.ApiDescription.Server -IncludePrerelease + Install-Package Microsoft.Extensions.ApiDescription.Server ``` ### [.NET CLI](#tab/net-cli) @@ -141,7 +141,7 @@ Run the following command from the **Package Manager Console**: Run the following command in the directory that contains the project file: ```dotnetcli -dotnet add package Microsoft.Extensions.ApiDescription.Server --prerelease +dotnet add package Microsoft.Extensions.ApiDescription.Server ``` ---