Exemplo n.º 1
0
 public FilterFile()
 {
     this.SourceSolutionFullPath = null;
     this.FilterFullPath = null;
     this.ProjectsToKeep = new List<string>();
     this.WatchForChangesOnFilteredSolution = false;
     m_watcher = null;
 }
Exemplo n.º 2
0
 public FilterFile()
 {
     this.SourceSolutionFullPath            = null;
     this.FilterFullPath                    = null;
     this.ProjectsToKeep                    = new List <string>();
     this.WatchForChangesOnFilteredSolution = false;
     m_watcher = null;
 }
Exemplo n.º 3
0
 public void StopFilteredSolutionWatcher()
 {
     if (m_watcher != null)
     {
         m_watcher.Stop();
         m_watcher = null;
     }
 }
Exemplo n.º 4
0
 public void StartFilteredSolutionWatcher(SolutionFile filteredSolution, AcceptDifferencesHandler handler)
 {
     if (this.WatchForChangesOnFilteredSolution && (m_watcher == null))
     {
         m_watcher = new FilteredSolutionWatcher(
             handler,
             this,
             filteredSolution);
         m_watcher.Start();
     }
 }
Exemplo n.º 5
0
 public void StopFilteredSolutionWatcher()
 {
     if (m_watcher != null)
     {
         m_watcher.Stop();
         m_watcher = null;
     }
 }
Exemplo n.º 6
0
 public void StartFilteredSolutionWatcher(SolutionFile filteredSolution, AcceptDifferencesHandler handler)
 {
     if (this.WatchForChangesOnFilteredSolution && (m_watcher == null))
     {
         m_watcher = new FilteredSolutionWatcher(
                     handler,
                     this,
                     filteredSolution);
         m_watcher.Start();
     }
 }