I\'m new to Rake and using it to build .net projects. What I\'m interested in is having a Summary task that prints out a summary of what has been done. I want this task to alw
I don't know if it's the best way but it's the simpler:
Make all your "public tasks" Summary ones that call real tasks.
task :compile => :realcompile do summary stuff end