Skip to content

Commit f2770d8

Browse files
Merge branch 'dev' into release
2 parents 9aa93f3 + 95648d4 commit f2770d8

21 files changed

Lines changed: 33 additions & 33 deletions

File tree

Clients/src/ConsoleClientCredentialsFlow/ConsoleClientCredentialsFlow.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="IdentityModel" Version="2.10.0" />
17+
<PackageReference Include="IdentityModel" Version="3.0.0" />
1818
</ItemGroup>
1919
</Project>

Clients/src/ConsoleClientCredentialsFlowPostBody/ConsoleClientCredentialsFlowPostBody.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="IdentityModel" Version="2.10.0" />
16+
<PackageReference Include="IdentityModel" Version="3.0.0" />
1717
</ItemGroup>
1818
</Project>

Clients/src/ConsoleCustomGrant/ConsoleCustomGrant.csproj

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

1616
<ItemGroup>
17-
<PackageReference Include="IdentityModel" Version="2.10.0" />
17+
<PackageReference Include="IdentityModel" Version="3.0.0" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

Clients/src/ConsoleHybridWithPkce/ConsoleHybridWithPkce.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
<ItemGroup>
99
<PackageReference Include="Serilog.Extensions.Logging" Version="2.0.2" />
10-
<PackageReference Include="Serilog.Sinks.Literate" Version="3.0.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.0" />
12-
<PackageReference Include="IdentityModel.OidcClient" Version="2.2.0" />
10+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.1" />
11+
<PackageReference Include="IdentityModel.OidcClient" Version="2.4.0" />
12+
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
1313
</ItemGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Clients/src/ConsoleHybridWithPkce/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ private static async Task SignIn()
4545
var serilog = new LoggerConfiguration()
4646
.MinimumLevel.Error()
4747
.Enrich.FromLogContext()
48-
.WriteTo.LiterateConsole(outputTemplate: "[{Timestamp:HH:mm:ss} {Level}] {SourceContext}{NewLine}{Message}{NewLine}{Exception}{NewLine}")
48+
.WriteTo.Console(outputTemplate: "[{Timestamp:HH:mm:ss} {Level}] {SourceContext}{NewLine}{Message}{NewLine}{Exception}{NewLine}")
4949
.CreateLogger();
5050

5151
options.LoggerFactory.AddSerilog(serilog);
5252

5353
_oidcClient = new OidcClient(options);
54-
var result = await _oidcClient.LoginAsync();
54+
var result = await _oidcClient.LoginAsync(new LoginRequest());
5555

5656
ShowResult(result);
5757
await NextSteps(result);

Clients/src/ConsoleIntrospectionClient/ConsoleIntrospectionClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="IdentityModel" Version="2.10.0" />
13+
<PackageReference Include="IdentityModel" Version="3.0.0" />
1414
</ItemGroup>
1515

1616
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Clients/src/ConsolePrivateKeyJwtClient/ConsolePrivateKeyJwtClient.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.1.3" />
20-
<PackageReference Include="IdentityModel" Version="2.10.0" />
21-
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
19+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.1.5" />
20+
<PackageReference Include="IdentityModel" Version="3.0.0" />
21+
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
2222
</ItemGroup>
2323

2424
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Clients/src/ConsoleResourceOwnerFlow/ConsoleResourceOwnerFlow.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="IdentityModel" Version="2.10.0" />
13+
<PackageReference Include="IdentityModel" Version="3.0.0" />
1414
</ItemGroup>
1515

1616
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Clients/src/ConsoleResourceOwnerFlowPublic/ConsoleResourceOwnerFlowPublic.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="IdentityModel" Version="2.10.0" />
13+
<PackageReference Include="IdentityModel" Version="3.0.0" />
1414
</ItemGroup>
1515

1616
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Clients/src/ConsoleResourceOwnerFlowReference/ConsoleResourceOwnerFlowReference.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="IdentityModel" Version="2.10.0" />
13+
<PackageReference Include="IdentityModel" Version="3.0.0" />
1414
</ItemGroup>
1515

1616
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

0 commit comments

Comments
 (0)