I\'m currently trying to iterate over all of my projects (sharepoint) to get all feature guids into an file. there i want to prefix them with the projects name. My problem i
var item = dte.Solution.Projects.GetEnumerator();
while (item.MoveNext())
{
var project = item.Current as EnvDTE.Project;
if (project == null)
{
continue;
}
...
}