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 ); }
public void OpenFile(ProjectUtils.Project project, string fileName) => _inProc.OpenFile(project.Name, fileName);
public void OpenFile(string projectName, string fileName) => _inProc.OpenFile(projectName, fileName);