Skip to content

Commit

Permalink
chore: Disable signing NuGet dependencies (#968)
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmeisterAn authored Aug 9, 2023
1 parent bad5b70 commit b2b743b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Task("Create-NuGet-Packages")
});

Task("Sign-NuGet-Packages")
.WithCriteria(() => param.ShouldPublish)
.WithCriteria(() => param.ShouldPublish && false /* We do not have access to a valid code signing certificate anymore. */)
.Does(() =>
{
StartProcess("dotnet", new ProcessSettings
Expand Down

0 comments on commit b2b743b

Please sign in to comment.