A library to allow reporting progress of long tasks to the user.
Usage example:
varmonitor=newConsoleProgressMonitor();using(monitor.ConfigureSteps(1,4,5)){monitor.StartStep("First step with weight 1");
...monitor.StartStep("Second step with weight 4");DoSomething(monitor.CreateSubMonitor());monitor.Report("Still working...");
...monitor.StartStep("Third step with weight 5");
...}PM> Install-Package ProgressMonitor