예제 #1
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());
 }