Bari.Core.Build.Dependencies.SubtaskDependency.Dump C# (CSharp) Method

Dump() public method

public Dump ( IUserOutput output ) : void
output IUserOutput
return void
        public override void Dump(IUserOutput output)
        {
            output.Message(String.Format("Subtask {0}", subtask));
            output.Indent();
            try
            {
                subtask.Dependencies.Dump(output);
            }
            finally
            {
                output.Unindent();
            }
        }