Skip to content

Commit

Permalink
include DPoP project in build
Browse files Browse the repository at this point in the history
  • Loading branch information
leastprivilege committed Oct 10, 2023
1 parent e56d439 commit f76d7fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ static async Task Main(string[] args)
{
Run("dotnet", $"pack ./src/OidcClient/OidcClient.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
Run("dotnet", $"pack ./src/IdentityTokenValidator/IdentityTokenValidator.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
Run("dotnet", $"pack ./src/DPoP/DPoP.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
});

Target(Targets.SignPackage, DependsOn(Targets.Pack, Targets.RestoreTools), () =>
Expand Down
2 changes: 1 addition & 1 deletion src/DPoP/DPoP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>

<PackageTags>OAuth2;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer</PackageTags>
<PackageTags>OAuth2;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer;DPoP</PackageTags>
<Description>DPoP extensions for IdentityModel.OidcClient</Description>
<Authors>Dominick Baier;Brock Allen</Authors>
<PackageIcon>icon.jpg</PackageIcon>
Expand Down

0 comments on commit f76d7fe

Please sign in to comment.