Skip to content
This repository was archived by the owner on Feb 23, 2025. It is now read-only.

Commit f76d7fe

Browse files
include DPoP project in build
1 parent e56d439 commit f76d7fe

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build/Program.cs

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ static async Task Main(string[] args)
5757
{
5858
Run("dotnet", $"pack ./src/OidcClient/OidcClient.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
5959
Run("dotnet", $"pack ./src/IdentityTokenValidator/IdentityTokenValidator.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
60+
Run("dotnet", $"pack ./src/DPoP/DPoP.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
6061
});
6162

6263
Target(Targets.SignPackage, DependsOn(Targets.Pack, Targets.RestoreTools), () =>

src/DPoP/DPoP.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<LangVersion>latest</LangVersion>
1010
<Nullable>enable</Nullable>
1111

12-
<PackageTags>OAuth2;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer</PackageTags>
12+
<PackageTags>OAuth2;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer;DPoP</PackageTags>
1313
<Description>DPoP extensions for IdentityModel.OidcClient</Description>
1414
<Authors>Dominick Baier;Brock Allen</Authors>
1515
<PackageIcon>icon.jpg</PackageIcon>

0 commit comments

Comments
 (0)