Skip to content

Commit ee46ac5

Browse files
committed
Hide --debug option from nugetize tool
Fixes #108
1 parent 9c056eb commit ee46ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotnet-nugetize/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ int Run(string[] args)
3434
{
3535
{ "?|h|help", "Display this help.", h => help = h != null },
3636
{ "b|bl|binlog", "Generate binlog.", b => binlog = b != null },
37-
{ "d|debug", "Debug nugetizer tasks.", d => debug = d != null },
37+
{ "d|debug", "Debug nugetizer tasks.", d => debug = d != null, true },
3838
{ "q|quiet", "Don't render MSBuild output.", q => quiet = q != null },
3939
{ "i|items:", "MSBuild items file path containing full package contents metadata.", i => items = Path.GetFullPath(i) },
4040
{ "version", "Render tool version and copyright information.", v => version = v != null },

0 commit comments

Comments
 (0)