mirror of
https://github.com/brutaldev/StrongNameSigner.git
synced 2026-04-25 11:26:04 +03:00
[GH-ISSUE #15] Add a verbosity switch #15
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mklaber on GitHub (May 27, 2015).
Original GitHub issue: https://github.com/brutaldev/StrongNameSigner/issues/15
Originally assigned to: @brutaldev on GitHub.
Now that I've actually added this to my build process I'm faced with the incredibly verbose output it produces. While a "silent" mode would be nice, I probably wouldn't want it that quiet. It'd be great if it'd just print the assemblies that are fixed or signed. (e.g., don't print assemblies that have a
Nothing to fix...result)@brutaldev commented on GitHub (May 28, 2015):
LogLevelparameter provided in v1.4.6.In your case, you would want to use the
Changeslevel to only output any changes made (includes signing, reference corrections and IVT removals). Simply add-l Changesto your command-line arguments.Certain log messages have been changed to ensure you are always aware of the file name being operated on.
@mklaber commented on GitHub (May 28, 2015):
Awesome, as always.