I've got a default.ps1 file with several tasks, some of which I don't use all too often.

Instead of opening the file and grep'ing for the Tasks, is there a way to list them in the command line? Ideally with some description attached to them (that would be set near the tasks).

I'm thinking of something similar to what rake does with -t (see here for example)

link|improve this question

50% accept rate
feedback

2 Answers

up vote 9 down vote accepted

invoke-psake -docs

This sentence is just to make my answer the minimum character limit.

link|improve this answer
feedback

I tried to visualize the task dependencies.

Not exactly what you wanted, but could help you. Look at enter link description here (it needs dlls from https://github.com/stej/psake-contrib/tree/master/lib). Basically you call psake the same way as usually but instead of calling psake tasks, the tasks tree is displayed.

It doesn't display all the tasks, only the tasks that you specified on command line. Could be added though :)

link|improve this answer
This not exactly what I wanted, but it's bookmarked for future reference :) quite cool, thanks! – Bruno Lopes Mar 16 '11 at 7:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.