Skip to content

Commit

Permalink
Hide --debug option from nugetize tool
Browse files Browse the repository at this point in the history
Fixes #108
  • Loading branch information
kzu committed Jun 9, 2021
1 parent 9c056eb commit ee46ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotnet-nugetize/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ int Run(string[] args)
{
{ "?|h|help", "Display this help.", h => help = h != null },
{ "b|bl|binlog", "Generate binlog.", b => binlog = b != null },
{ "d|debug", "Debug nugetizer tasks.", d => debug = d != null },
{ "d|debug", "Debug nugetizer tasks.", d => debug = d != null, true },
{ "q|quiet", "Don't render MSBuild output.", q => quiet = q != null },
{ "i|items:", "MSBuild items file path containing full package contents metadata.", i => items = Path.GetFullPath(i) },
{ "version", "Render tool version and copyright information.", v => version = v != null },
Expand Down

0 comments on commit ee46ac5

Please sign in to comment.