示例#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());
 }
示例#2
0
文件: VsHelper.cs 项目: remcoros/kudu
 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();
 }
示例#3
0
文件: VsHelper.cs 项目: robzelt/kudu
 private static bool ExistsInSolution(VsSolution solution, string targetPath)
 {
     return (from p in solution.Projects
             where PathUtility.PathsEquals(p.AbsolutePath, targetPath)
             select p).Any();
 }
示例#4
0
文件: VsHelper.cs 项目: izevaka/kudu
 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());
 }