private static string GetTaskName()

in Content/tasks.cake [61:68]


    private static string GetTaskName(CakeTaskBuilder taskBuilder) {
        if (taskBuilder != null)
        {
            return taskBuilder.Task.Name;
        }

        throw new Exception("Cannot retrieve a name of a task as the task is undefined (null).");
    }