File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 33
33
</ItemGroup >
34
34
35
35
<ItemGroup >
36
- <PackageReference Include =" IdentityModel.AspNetCore.OAuth2Introspection" Version =" 4.0.1 " />
36
+ <PackageReference Include =" IdentityModel.AspNetCore.OAuth2Introspection" Version =" 6.1.0 " />
37
37
38
- <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 3 .0.0" />
39
- <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.0.0-beta2-19367-01 " PrivateAssets =" All" />
38
+ <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 7 .0.0" />
39
+ <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1 " PrivateAssets =" All" />
40
40
41
- <PackageReference Include =" minver" Version =" 2 .2.0" PrivateAssets =" All" />
41
+ <PackageReference Include =" minver" Version =" 4 .2.0" PrivateAssets =" All" />
42
42
</ItemGroup >
43
43
</Project >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public static TestServer CreateServer(Action<IdentityServerAuthenticationOptions
27
27
{
28
28
app . UseAuthentication ( ) ;
29
29
30
- app . Use ( ( context , next ) =>
30
+ app . Use ( async ( context , next ) =>
31
31
{
32
32
var user = context . User ;
33
33
@@ -40,7 +40,7 @@ public static TestServer CreateServer(Action<IdentityServerAuthenticationOptions
40
40
context . Response . StatusCode = 401 ;
41
41
}
42
42
43
- return Task . CompletedTask ;
43
+ await next ( ) ;
44
44
} ) ;
45
45
} ) ) ;
46
46
}
Original file line number Diff line number Diff line change 5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
- <PackageReference Include =" FluentAssertions" Version =" 5.9 .0" />
9
- <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 3 .0.0" />
10
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.3 .0" />
11
- <PackageReference Include =" xunit" Version =" 2.4.1 " />
12
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.1 " >
8
+ <PackageReference Include =" FluentAssertions" Version =" 6.8 .0" />
9
+ <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 7 .0.0" />
10
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.4 .0" />
11
+ <PackageReference Include =" xunit" Version =" 2.4.2 " />
12
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5 " >
13
13
<PrivateAssets >all</PrivateAssets >
14
14
<IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
15
15
</PackageReference >
You can’t perform that action at this time.
0 commit comments