예제 #1
0
 public void OpenFile(ProjectUtils.Project project, string fileName)
 {
     // Wireup to open files can happen asynchronously in the case we're being notified of changes on background threads.
     _inProc.OpenFile(project.Name, fileName);
     _instance.Workspace.WaitForAsyncOperations(
         Helper.HangMitigatingTimeout,
         FeatureAttribute.Workspace
         );
 }
예제 #2
0
 public void OpenFile(ProjectUtils.Project project, string fileName)
 => _inProc.OpenFile(project.Name, fileName);
예제 #3
0
 public void OpenFile(string projectName, string fileName)
     => _inProc.OpenFile(projectName, fileName);