File tree Expand file tree Collapse file tree
UserInteraction/Ciba/Client
UserInteraction/Ciba/Client Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88 <ItemGroup >
99 <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 10.0.5" />
10- <PackageReference Include =" Serilog.AspNetCore" Version =" 9 .0.0" />
10+ <PackageReference Include =" Serilog.AspNetCore" Version =" 10 .0.0" />
1111 </ItemGroup >
1212
1313 <ItemGroup >
Original file line number Diff line number Diff line change 1010 <ItemGroup >
1111 <FrameworkReference Include =" Microsoft.AspNetCore.App" />
1212
13- <PackageReference Include =" Microsoft.Extensions.Http.Resilience" Version =" 10.1 .0" />
14- <PackageReference Include =" Microsoft.Extensions.ServiceDiscovery" Version =" 10.1 .0" />
15- <PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.14.0 " />
16- <PackageReference Include =" OpenTelemetry.Extensions.Hosting" Version =" 1.14.0 " />
17- <PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.14.0 " />
18- <PackageReference Include =" OpenTelemetry.Instrumentation.Http" Version =" 1.14 .0" />
19- <PackageReference Include =" OpenTelemetry.Instrumentation.Runtime" Version =" 1.14 .0" />
13+ <PackageReference Include =" Microsoft.Extensions.Http.Resilience" Version =" 10.4 .0" />
14+ <PackageReference Include =" Microsoft.Extensions.ServiceDiscovery" Version =" 10.4 .0" />
15+ <PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.15.1 " />
16+ <PackageReference Include =" OpenTelemetry.Extensions.Hosting" Version =" 1.15.1 " />
17+ <PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.15.1 " />
18+ <PackageReference Include =" OpenTelemetry.Instrumentation.Http" Version =" 1.15 .0" />
19+ <PackageReference Include =" OpenTelemetry.Instrumentation.Runtime" Version =" 1.15 .0" />
2020 </ItemGroup >
2121
2222</Project >
Original file line number Diff line number Diff line change 77 </PropertyGroup >
88
99 <ItemGroup >
10- <PackageReference Include =" Duende.IdentityModel" Version =" 7 .1.0" />
10+ <PackageReference Include =" Duende.IdentityModel" Version =" 8 .1.0" />
1111 </ItemGroup >
1212
1313</Project >
Original file line number Diff line number Diff line change 11// Copyright (c) Duende Software. All rights reserved.
22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
4+ using System . Buffers . Text ;
45using System . Text ;
56using System . Text . Json ;
67using Duende . IdentityModel ;
@@ -25,8 +26,8 @@ public static void Show(this TokenResponse response)
2526 var header = parts [ 0 ] ;
2627 var payload = parts [ 1 ] ;
2728
28- Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . Decode ( header ) ) ) ) ;
29- Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . Decode ( payload ) ) ) ) ;
29+ Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . DecodeFromChars ( header ) ) ) ) ;
30+ Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . DecodeFromChars ( payload ) ) ) ) ;
3031 }
3132 }
3233 else
Original file line number Diff line number Diff line change 77
88 <ItemGroup >
99 <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 10.0.5" />
10- <PackageReference Include =" Serilog.AspNetCore" Version =" 9 .0.0" />
10+ <PackageReference Include =" Serilog.AspNetCore" Version =" 10 .0.0" />
1111 </ItemGroup >
1212
1313 <ItemGroup >
Original file line number Diff line number Diff line change 1010 <ItemGroup >
1111 <FrameworkReference Include =" Microsoft.AspNetCore.App" />
1212
13- <PackageReference Include =" Microsoft.Extensions.Http.Resilience" Version =" 10.1 .0" />
14- <PackageReference Include =" Microsoft.Extensions.ServiceDiscovery" Version =" 10.1 .0" />
15- <PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.14.0 " />
16- <PackageReference Include =" OpenTelemetry.Extensions.Hosting" Version =" 1.14.0 " />
17- <PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.14.0 " />
18- <PackageReference Include =" OpenTelemetry.Instrumentation.Http" Version =" 1.14 .0" />
19- <PackageReference Include =" OpenTelemetry.Instrumentation.Runtime" Version =" 1.14 .0" />
13+ <PackageReference Include =" Microsoft.Extensions.Http.Resilience" Version =" 10.4 .0" />
14+ <PackageReference Include =" Microsoft.Extensions.ServiceDiscovery" Version =" 10.4 .0" />
15+ <PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.15.1 " />
16+ <PackageReference Include =" OpenTelemetry.Extensions.Hosting" Version =" 1.15.1 " />
17+ <PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.15.1 " />
18+ <PackageReference Include =" OpenTelemetry.Instrumentation.Http" Version =" 1.15 .0" />
19+ <PackageReference Include =" OpenTelemetry.Instrumentation.Runtime" Version =" 1.15 .0" />
2020 </ItemGroup >
2121
2222</Project >
Original file line number Diff line number Diff line change 77 </PropertyGroup >
88
99 <ItemGroup >
10- <PackageReference Include =" Duende.IdentityModel" Version =" 7 .1.0" />
10+ <PackageReference Include =" Duende.IdentityModel" Version =" 8 .1.0" />
1111 </ItemGroup >
1212
1313</Project >
Original file line number Diff line number Diff line change 11// Copyright (c) Duende Software. All rights reserved.
22// Licensed under the MIT License. See LICENSE in the project root for license information.
33
4+ using System . Buffers . Text ;
45using System . Text ;
56using System . Text . Json ;
67using Duende . IdentityModel ;
@@ -25,8 +26,8 @@ public static void Show(this TokenResponse response)
2526 var header = parts [ 0 ] ;
2627 var payload = parts [ 1 ] ;
2728
28- Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . Decode ( header ) ) ) ) ;
29- Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . Decode ( payload ) ) ) ) ;
29+ Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . DecodeFromChars ( header ) ) ) ) ;
30+ Console . WriteLine ( PrettyPrintJson ( Encoding . UTF8 . GetString ( Base64Url . DecodeFromChars ( payload ) ) ) ) ;
3031 }
3132 }
3233 else
You can’t perform that action at this time.
0 commit comments