5
只是想站起來與SDK加快...Visual Studio Extensibility,你如何枚舉解決方案中的項目?
所以,我創建了自己的工具窗口....
現在我想通過現有項目在當前加載的迭代解決方案並在工具窗口中顯示其名稱....任何線索?
只是想站起來與SDK加快...Visual Studio Extensibility,你如何枚舉解決方案中的項目?
所以,我創建了自己的工具窗口....
現在我想通過現有項目在當前加載的迭代解決方案並在工具窗口中顯示其名稱....任何線索?
static public IEnumerable<IVsProject> LoadedProjects
{
get
{
var solution = _serviceProvider.GetService(typeof(SVsSolution)) as IVsSolution;
if (solution == null)
{
Debug.Fail("Failed to get SVsSolution service.");
yield break;
}
IEnumHierarchies enumerator = null;
Guid guid = Guid.Empty;
solution.GetProjectEnum((uint)__VSENUMPROJFLAGS.EPF_LOADEDINSOLUTION, ref guid, out enumerator);
IVsHierarchy[] hierarchy = new IVsHierarchy[1] { null };
uint fetched = 0;
for (enumerator.Reset(); enumerator.Next(1, hierarchy, out fetched) == VSConstants.S_OK && fetched == 1; /*nothing*/)
{
yield return (IVsProject)hierarchy[0];
}
}
}
只是一個關於提供微軟的源代碼的鏈接,這是目前打破 – superjos 2016-01-03 01:34:01