Skip to content

Commit 5f24330

Browse files
authored
Drop prerelease flags now that .NET 9 has shipped (#34096)
1 parent 0148064 commit 5f24330

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

aspnetcore/fundamentals/openapi/aspnetcore-openapi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ Install the `Microsoft.AspNetCore.OpenApi` package:
2929
Run the following command from the **Package Manager Console**:
3030

3131
```powershell
32-
Install-Package Microsoft.AspNetCore.OpenApi -IncludePrerelease
32+
Install-Package Microsoft.AspNetCore.OpenApi
3333
```
3434

3535
### [.NET CLI](#tab/net-cli)
3636

3737
Run the following command:
3838

3939
```dotnetcli
40-
dotnet add package Microsoft.AspNetCore.OpenApi --prerelease
40+
dotnet add package Microsoft.AspNetCore.OpenApi
4141
```
4242
---
4343

@@ -133,15 +133,15 @@ To add support for generating OpenAPI documents at build time, install the `Micr
133133
Run the following command from the **Package Manager Console**:
134134

135135
```powershell
136-
Install-Package Microsoft.Extensions.ApiDescription.Server -IncludePrerelease
136+
Install-Package Microsoft.Extensions.ApiDescription.Server
137137
```
138138

139139
### [.NET CLI](#tab/net-cli)
140140

141141
Run the following command in the directory that contains the project file:
142142

143143
```dotnetcli
144-
dotnet add package Microsoft.Extensions.ApiDescription.Server --prerelease
144+
dotnet add package Microsoft.Extensions.ApiDescription.Server
145145
```
146146
---
147147

0 commit comments

Comments
 (0)