File tree 4 files changed +14
-25
lines changed
4 files changed +14
-25
lines changed Original file line number Diff line number Diff line change 25
25
uses : actions/setup-dotnet@v2
26
26
with :
27
27
dotnet-version : |
28
- 6.0.x
29
- 7.0.x
28
+ 9.0.x
30
29
31
30
- run : dotnet --info
32
31
38
37
env :
39
38
SignClientSecret : ${{ secrets.SIGNCLIENTSECRET }}
40
39
run : |
41
- ./build.cmd sign
42
- dotnet nuget push .\artifacts\*.nupkg -s https://www.myget.org/F/identity/api/v2/package -k ${{ secrets.MYGET }}
40
+ ./build.cmd sign
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net6.0</ TargetFramework >
3
+ <TargetFrameworks >net8.0;net9.0</ TargetFrameworks >
4
4
5
5
<PackageId >IdentityModel.AspNetCore.OAuth2Introspection</PackageId >
6
6
<Description >ASP.NET Core authentication handler for validating tokens using OAuth 2.0 introspection</Description >
11
11
<PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
12
12
<GenerateDocumentationFile >true</GenerateDocumentationFile >
13
13
</PropertyGroup >
14
-
14
+
15
15
<PropertyGroup >
16
16
<PublishRepositoryUrl >true</PublishRepositoryUrl >
17
17
<EmbedUntrackedSources >true</EmbedUntrackedSources >
29
29
<ItemGroup >
30
30
<PackageReference Include =" IdentityModel" Version =" 6.0.0" />
31
31
32
- <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1 " PrivateAssets =" All" />
33
- <PackageReference Include =" minver" Version =" 4.3 .0" PrivateAssets =" All" />
32
+ <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0 " PrivateAssets =" All" />
33
+ <PackageReference Include =" minver" Version =" 6.0 .0" PrivateAssets =" All" />
34
34
</ItemGroup >
35
35
</Project >
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ namespace Tests
20
20
{
21
21
public class Introspection
22
22
{
23
-
24
23
private static readonly string clientId = "client" ;
25
24
private static readonly string clientSecret = "secret" ;
26
25
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
-
2
+
3
3
<PropertyGroup >
4
- <TargetFrameworks >net6.0;net7.0</ TargetFrameworks >
4
+ <TargetFramework >net9.0</ TargetFramework >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
8
<ProjectReference Include =" ..\..\src\IdentityModel.AspNetCore.OAuth2Introspection.csproj" />
9
9
</ItemGroup >
10
10
11
11
<ItemGroup >
12
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.10 .0" />
13
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.3 " >
12
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13 .0" />
13
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.1.0 " >
14
14
<PrivateAssets >all</PrivateAssets >
15
15
</PackageReference >
16
- <PackageReference Include =" xunit" Version =" 2.4.1 " />
16
+ <PackageReference Include =" xunit" Version =" 2.9.3 " />
17
17
<PackageReference Include =" FluentAssertions" Version =" 5.10.3" />
18
-
19
-
20
- </ItemGroup >
21
-
22
- <ItemGroup Condition =" '$(TargetFramework)' == 'net6.0' " >
23
- <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 6.0.0" />
24
- </ItemGroup >
18
+ <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 9.0.4" />
25
19
26
- <ItemGroup Condition =" '$(TargetFramework)' == 'net7.0' " >
27
- <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 7.0.0" />
28
20
</ItemGroup >
29
-
30
-
21
+
22
+
31
23
</Project >
You can’t perform that action at this time.
0 commit comments