The following will be decorated with the "run task" and "debug task" shortcuts
Task("GenerateReport")
.Does<BuildParameters>(TestTasks.GenerateReport);
However this will not:
Task(nameof(TestTasks.GenerateReport))
.Does<BuildParameters>(TestTasks.GenerateReport);
The following will be decorated with the "run task" and "debug task" shortcuts
However this will not: