Ejemplo n.º 1
0
 void OnFileChangedInProject(ProjectFileEventArgs e)
 {
     if (ParentFolder == null && ParentSolution != null)
     {
         ParentSolution.OnFileChangedInProject(e);
     }
     FileChangedInProject?.Invoke(this, e);
 }
Ejemplo n.º 2
0
 protected virtual void OnFileChangedInProject(ProjectFileEventArgs e)
 {
     if (ParentFolder == null && ParentSolution != null)
     {
         ParentSolution.OnFileChangedInProject(e);
     }
     if (FileChangedInProject != null)
     {
         FileChangedInProject(this, e);
     }
 }