File tree Expand file tree Collapse file tree 3 files changed +12
-27
lines changed Expand file tree Collapse file tree 3 files changed +12
-27
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,12 @@ jobs:
21
21
steps :
22
22
- uses : actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819
23
23
24
- - name : Setup net6
25
- uses : actions/setup-dotnet@v1
24
+ - name : Setup dotnet
25
+ uses : actions/setup-dotnet@v2
26
26
with :
27
- dotnet-version : ' 6.0.x'
28
-
29
- - name : Setup net3
30
- uses : actions/setup-dotnet@v1
31
- with :
32
- dotnet-version : ' 3.1.x'
27
+ dotnet-version : |
28
+ 6.0.x
29
+ 7.0.x
33
30
34
31
- run : dotnet --info
35
32
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >netcoreapp3.1; net6.0</TargetFrameworks >
3
+ <TargetFramework > net6.0</TargetFramework >
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 >
7
7
<Authors >Dominick Baier;Brock Allen</Authors >
8
8
<PackageTags >OAuth2;OAuth 2.0;Introspection;Security;Identity;IdentityServer</PackageTags >
9
9
<PackageIcon >icon.jpg</PackageIcon >
10
- <!-- <PackageIconUrl>https://identityserver.github.io/Documentation/assets/images/icons/IDmodel_icon128.png</PackageIconUrl> -->
11
10
<PackageProjectUrl >https://github.com/IdentityModel/IdentityModel.AspNetCore.OAuth2Introspection</PackageProjectUrl >
12
11
<PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
13
12
<GenerateDocumentationFile >true</GenerateDocumentationFile >
14
13
</PropertyGroup >
15
14
16
- <PropertyGroup >
17
- <AssemblyOriginatorKeyFile >../key.snk</AssemblyOriginatorKeyFile >
18
- <SignAssembly >true</SignAssembly >
19
- <PublicSign Condition =" '$(OS)' != 'Windows_NT'" >true</PublicSign >
20
- <GenerateDocumentationFile >true</GenerateDocumentationFile >
21
- </PropertyGroup >
22
-
23
15
<PropertyGroup >
24
16
<PublishRepositoryUrl >true</PublishRepositoryUrl >
25
17
<EmbedUntrackedSources >true</EmbedUntrackedSources >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
- <PropertyGroup Condition =" '$(NETCoreSdkPortableRuntimeIdentifier)' != 'osx-arm64' " >
4
- <TargetFrameworks >netcoreapp3.1;net6.0</TargetFrameworks >
5
- </PropertyGroup >
6
-
7
- <PropertyGroup Condition =" '$(NETCoreSdkPortableRuntimeIdentifier)' == 'osx-arm64' " >
8
- <TargetFramework >net6.0</TargetFramework >
3
+ <PropertyGroup >
4
+ <TargetFrameworks >net6.0;net7.0</TargetFrameworks >
9
5
</PropertyGroup >
10
6
11
7
<ItemGroup >
22
18
23
19
24
20
</ItemGroup >
25
-
26
- <ItemGroup Condition =" '$(TargetFramework)' == 'netcoreapp3.1' " >
27
- <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 3.1.0" />
28
- </ItemGroup >
29
21
30
22
<ItemGroup Condition =" '$(TargetFramework)' == 'net6.0' " >
31
23
<PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 6.0.0" />
32
24
</ItemGroup >
25
+
26
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net7.0' " >
27
+ <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 7.0.0" />
28
+ </ItemGroup >
33
29
34
30
35
31
</Project >
You can’t perform that action at this time.
0 commit comments