internal bool ProjectMatch(CodeIssueFile issue)
 {
     return project.FullName == issue.file.Project.FullName ? true : false;
 }
Example #2
0
 internal bool ProjectMatch(CodeIssueFile issue)
 {
     return(project.FullName == issue.file.Project.FullName ? true : false);
 }
        /*
        internal bool FileMatch(CodeIssueFile issue)
        {
            return issue.file == file ? true : false;
        }*/

        internal bool FilePathMatch(CodeIssueFile issue)
        {
            return issue.file.FilePath == filePath ? true : false;
        }
Example #4
0
        /*
         * internal bool FileMatch(CodeIssueFile issue)
         * {
         *  return issue.file == file ? true : false;
         * }*/

        internal bool FilePathMatch(CodeIssueFile issue)
        {
            return(issue.file.FilePath == filePath ? true : false);
        }