Skip to content

Commit

Permalink
Drop prerelease flags now that .NET 9 has shipped (#34096)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekistler authored Nov 13, 2024
1 parent 0148064 commit 5f24330
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aspnetcore/fundamentals/openapi/aspnetcore-openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ 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)

Run the following command:

```dotnetcli
dotnet add package Microsoft.AspNetCore.OpenApi --prerelease
dotnet add package Microsoft.AspNetCore.OpenApi
```
---

Expand Down Expand Up @@ -133,15 +133,15 @@ 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)

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
```
---

Expand Down

0 comments on commit 5f24330

Please sign in to comment.