public static bool IsWebSolution(this IProjectCommand source)
 {
     return(source.Solution() is WebProjectSolution);
 }
 public static IDisposable SuspendWatchers(this IProjectCommand source)
 {
     return(new WatcherSuspender(source.Solution() as ISolutionManagement));
 }