1 write to _solution
Microsoft.VisualStudio.IntegrationTest.Utilities (1)
InProcess\SolutionExplorer_InProc.cs (1)
128
_solution
= (Solution2)dte.Solution;
16 references to _solution
Microsoft.VisualStudio.IntegrationTest.Utilities (16)
InProcess\SolutionExplorer_InProc.cs (16)
90
Contract.ThrowIfNull(
_solution
);
93
var solutionFullName =
_solution
.FullName;
176
Contract.ThrowIfNull(
_solution
);
177
_solution
.AddFromTemplate(projectTemplatePath, projectPath, projectName, Exclusive: false);
254
Contract.ThrowIfNull(
_solution
);
255
_solution
.AddFromTemplate(projectTemplatePath, projectPath, projectName, Exclusive: false);
261
Contract.ThrowIfNull(
_solution
);
266
return
_solution
.GetProjectTemplate(csharpProjectTemplate, languageName);
272
return
_solution
.GetProjectTemplate(visualBasicProjectTemplate, languageName);
275
return
_solution
.GetProjectTemplate(projectTemplate, languageName);
475
Contract.ThrowIfNull(
_solution
);
476
return
_solution
.Projects.OfType<EnvDTE.Project>().First(
831
Contract.ThrowIfNull(
_solution
);
832
var projects =
_solution
.Projects.Cast<EnvDTE.Project>();
873
Contract.ThrowIfNull(
_solution
);
874
var project =
_solution
.Projects.Cast<EnvDTE.Project>().First(x => x.Name == projectName);