Skip to content

Commit d2050a7

Browse files
first cut (IdentityModel#175)
1 parent b71fa43 commit d2050a7

File tree

3 files changed

+12
-27
lines changed

3 files changed

+12
-27
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,12 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819
2323

24-
- name: Setup net6
25-
uses: actions/setup-dotnet@v1
24+
- name: Setup dotnet
25+
uses: actions/setup-dotnet@v2
2626
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
3330
3431
- run: dotnet --info
3532

src/IdentityModel.AspNetCore.OAuth2Introspection.csproj

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
3+
<TargetFramework>net6.0</TargetFramework>
44

55
<PackageId>IdentityModel.AspNetCore.OAuth2Introspection</PackageId>
66
<Description>ASP.NET Core authentication handler for validating tokens using OAuth 2.0 introspection</Description>
77
<Authors>Dominick Baier;Brock Allen</Authors>
88
<PackageTags>OAuth2;OAuth 2.0;Introspection;Security;Identity;IdentityServer</PackageTags>
99
<PackageIcon>icon.jpg</PackageIcon>
10-
<!-- <PackageIconUrl>https://identityserver.github.io/Documentation/assets/images/icons/IDmodel_icon128.png</PackageIconUrl> -->
1110
<PackageProjectUrl>https://github.com/IdentityModel/IdentityModel.AspNetCore.OAuth2Introspection</PackageProjectUrl>
1211
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1312
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1413
</PropertyGroup>
1514

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-
2315
<PropertyGroup>
2416
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2517
<EmbedUntrackedSources>true</EmbedUntrackedSources>

test/Tests/Tests.csproj

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

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>
95
</PropertyGroup>
106

117
<ItemGroup>
@@ -22,14 +18,14 @@
2218

2319

2420
</ItemGroup>
25-
26-
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
27-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.0" />
28-
</ItemGroup>
2921

3022
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
3123
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.0" />
3224
</ItemGroup>
25+
26+
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
27+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="7.0.0" />
28+
</ItemGroup>
3329

3430

3531
</Project>

0 commit comments

Comments
 (0)