Skip to content

Commit 7ce9949

Browse files
committed
bump versions
1 parent f44fd40 commit 7ce9949

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

MyApp.Client/src/_posts/2024-02-08_openapi-v3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This will install the required ASP.NET Core Microsoft, Swashbuckle and ServiceSt
7272

7373
```xml
7474
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.*" />
75-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.*" />
75+
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.*" />
7676
<PackageReference Include="ServiceStack.AspNetCore.OpenApi" Version="8.*" />
7777
```
7878

MyApp.Client/src/_posts/2024-02-11_jwt-identity-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class ConfigureAuth : IHostingStartup
6161
Once configured we can enable JWT Auth in Swagger UI by installing **Swashbuckle.AspNetCore**:
6262

6363
:::copy
64-
`<PackageReference Include="Swashbuckle.AspNetCore" Version="6.*" />`
64+
`<PackageReference Include="Swashbuckle.AspNetCore" Version="7.*" />`
6565
:::
6666

6767
Then enable Open API, Swagger UI, ServiceStack's support for Swagger UI and the JWT Bearer Auth option:

MyApp/MyApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<ItemGroup>
3838
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.*" />
39-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.*" />
39+
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.*" />
4040
<PackageReference Include="ServiceStack.AspNetCore.OpenApi" Version="8.*" />
4141
</ItemGroup>
4242

0 commit comments

Comments
 (0)