Skip to content

Commit 677bf68

Browse files
update to RTM + add icon
1 parent bae0b5b commit 677bf68

File tree

5 files changed

+14
-20
lines changed

5 files changed

+14
-20
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,11 @@ jobs:
77
pool:
88
vmImage: 'ubuntu-16.04'
99
steps:
10-
- task: UseDotNet@2
11-
displayName: 'Install .NET Core 2.x SDK'
12-
inputs:
13-
packageType: 'sdk'
14-
version: '2.x'
1510
- task: UseDotNet@2
1611
displayName: 'Install .NET Core 3.x SDK'
1712
inputs:
1813
packageType: 'sdk'
19-
version: '3.0.100-preview9-014004'
14+
version: '3.0.100'
2015
includePreviewVersions: true
2116
- task: Bash@3
2217
displayName: 'Build Script'
@@ -28,16 +23,11 @@ jobs:
2823
pool:
2924
vmImage: 'vs2017-win2016'
3025
steps:
31-
- task: UseDotNet@2
32-
displayName: 'Install .NET Core 2.x SDK'
33-
inputs:
34-
packageType: 'sdk'
35-
version: '2.x'
3626
- task: UseDotNet@2
3727
displayName: 'Install .NET Core 3.x SDK'
3828
inputs:
3929
packageType: 'sdk'
40-
version: '3.0.100-preview9-014004'
30+
version: '3.0.100'
4131
includePreviewVersions: true
4232
- task: PowerShell@2
4333
displayName: 'Build Script'

build/build.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Bullseye" Version="2.4.0" />
10-
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.3" />
9+
<PackageReference Include="Bullseye" Version="3.0.0-rc.1" />
10+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.4.1" />
1111
<PackageReference Include="SimpleExec" Version="6.0.0" />
1212
</ItemGroup>
1313

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.0.100-preview9-014004"
3+
"version": "3.0.100"
44
}
55
}

icon.jpg

31 KB
Loading

src/IdentityServer4.AccessTokenValidation.csproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Authors>Brock Allen;Dominick Baier</Authors>
1010
<PackageId>IdentityServer4.AccessTokenValidation</PackageId>
1111
<PackageTags>OAuth2;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer;Bearer tokens</PackageTags>
12-
<PackageIconUrl>https://raw.githubusercontent.com/IdentityServer/Artwork/master/Logos/IDserver_icon128.jpg</PackageIconUrl>
12+
<PackageIcon>icon.jpg</PackageIcon>
1313
<PackageProjectUrl>https://github.com/IdentityServer/IdentityServer4.AccessTokenValidation</PackageProjectUrl>
1414
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1515
<PackageReleaseNotes>https://github.com/IdentityServer/IdentityServer4/releases</PackageReleaseNotes>
@@ -24,17 +24,21 @@
2424
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2525
</PropertyGroup>
2626

27+
<ItemGroup>
28+
<None Include="../icon.jpg" Pack="true" Visible="false" PackagePath="" />
29+
</ItemGroup>
30+
2731
<ItemGroup>
2832
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2933
</ItemGroup>
3034

3135
<ItemGroup>
32-
<PackageReference Include="IdentityModel.AspNetCore.OAuth2Introspection" Version="4.0.0" />
36+
<PackageReference Include="IdentityModel.AspNetCore.OAuth2Introspection" Version="4.0.1" />
3337

34-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0-preview9.19424.4" />
38+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0" />
3539
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All" />
3640

37-
<PackageReference Include="minver" Version="1.1.0">
41+
<PackageReference Include="minver" Version="2.0.0-rc.1">
3842
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3943
<PrivateAssets>all</PrivateAssets>
4044
</PackageReference>

0 commit comments

Comments
 (0)