Esempio n. 1
0
            public InProgressState(ExternalErrorDiagnosticUpdateSource owner, Solution solution)
            {
                _owner   = owner;
                Solution = solution;

                // let people know build has started
                _owner.RaiseBuildProgressChanged(BuildProgress.Started);
            }
Esempio n. 2
0
 public void Done()
 {
     _owner.RaiseBuildProgressChanged(BuildProgress.Done);
 }