Example #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());
 }
Example #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();
 }
Example #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();
 }
Example #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());
 }