예제 #1
0
            public InProgressState(ExternalErrorDiagnosticUpdateSource owner, Solution solution)
            {
                _owner   = owner;
                Solution = solution;

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