Beispiel #1
0
 public int Clone(out IVsEnumDependencies ppIVsEnumDependencies){
   ppIVsEnumDependencies = new DependencyEnumerator(referencedProjects, currentIndex);
   return 0;
 }
Beispiel #2
0
 public int EnumDependencies(out IVsEnumDependencies ppIVsEnumDependencies){
   ppIVsEnumDependencies = new DependencyEnumerator(GetReferencedProjects((XmlElement) this.projFile.SelectSingleNode("VisualStudioProject")));
   return 0;
 }