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

Commit 5c96437

Browse files
authored
suppress dotnet logo in pack target (#216)
1 parent 0e22ec8 commit 5c96437

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ internal static void Main(string[] args)
6060

6161
Target(Targets.Pack, DependsOn(Targets.Build, Targets.CleanPackOutput), () =>
6262
{
63-
Run("dotnet", $"pack ./src/OidcClient/OidcClient.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build");
64-
Run("dotnet", $"pack ./src/IdentityTokenValidator/IdentityTokenValidator.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build");
63+
Run("dotnet", $"pack ./src/OidcClient/OidcClient.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
64+
Run("dotnet", $"pack ./src/IdentityTokenValidator/IdentityTokenValidator.csproj -c Release -o {Directory.CreateDirectory(packOutput).FullName} --no-build --nologo");
6565
});
6666

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

0 commit comments

Comments
 (0)