Skip to content

Commit 7b0c0ed

Browse files
committed
Update package versions for OpenApi and JwtBearer
Updated `Microsoft.AspNetCore.OpenApi` to version `9.0.3` in multiple project files, including `ApiKeySample.csproj`, `BasicAuthenticationSample.csproj`, `JwtBearerSample.csproj`, and `SimpleAuthentication.csproj`. Also updated `Microsoft.AspNetCore.Authentication.JwtBearer` to `8.0.14` for `net8.0` and `9.0.3` for `net9.0` in `SimpleAuthentication.Abstractions.csproj`. Adjusted version range for `Microsoft.AspNetCore.OpenApi` in `Net8JwtBearerSample.csproj` from `[8.0.13,9.0.0)` to `[8.0.14,9.0.0)`.
1 parent c9405f3 commit 7b0c0ed

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

samples/MinimalApis/ApiKeySample/ApiKeySample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
10+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.3" />
1111
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.3.1" />
1212
</ItemGroup>
1313

samples/MinimalApis/BasicAuthenticationSample/BasicAuthenticationSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
10+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.3" />
1111
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.3.1" />
1212
</ItemGroup>
1313

samples/MinimalApis/JwtBearerSample/JwtBearerSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
10+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.3" />
1111
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="7.3.1" />
1212
</ItemGroup>
1313

samples/MinimalApis/Net8JwtBearerSample/Net8JwtBearerSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="[8.0.13,9.0.0)" />
10+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="[8.0.14,9.0.0)" />
1111
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.3.1" />
1212
</ItemGroup>
1313

src/SimpleAuthentication.Abstractions/SimpleAuthentication.Abstractions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
</ItemGroup>
2929

3030
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
31-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.13" />
31+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.14" />
3232
</ItemGroup>
3333

3434
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
35-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.2" />
35+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.3" />
3636
</ItemGroup>
3737

3838
<ItemGroup>

src/SimpleAuthentication/SimpleAuthentication.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</ItemGroup>
3232

3333
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
34-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.1" />
34+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.3" />
3535
</ItemGroup>
3636

3737
<ItemGroup>

0 commit comments

Comments
 (0)