Ejemplo n.º 1
0
 private static bool ExistsInSolution(VsSolution solution, string targetPath)
 {
     return((from p in solution.Projects
             where PathUtilityFactory.Instance.PathsEquals(p.AbsolutePath, targetPath)
             select p).Any());
 }
Ejemplo n.º 2
0
 private static bool ExistsInSolution(VsSolution solution, string targetPath)
 {
     return (from p in solution.Projects
             where PathUtility.NormalizePath(p.AbsolutePath).Equals(PathUtility.NormalizePath(targetPath))
             select p).Any();
 }
Ejemplo n.º 3
0
 private static bool ExistsInSolution(VsSolution solution, string targetPath)
 {
     return (from p in solution.Projects
             where PathUtility.PathsEquals(p.AbsolutePath, targetPath)
             select p).Any();
 }
Ejemplo n.º 4
0
 private static bool ExistsInSolution(VsSolution solution, string targetPath)
 {
     return((from p in solution.Projects
             where PathUtility.NormalizePath(p.AbsolutePath).Equals(PathUtility.NormalizePath(targetPath))
             select p).Any());
 }