Ejemplo n.º 1
0
 public static Dictionary <string, string> VerifyPdbFiles(this Project project, IEnumerable <string> files, string pdbFileFullPath)
 {
     using (var pdb = new PdbFile(pdbFileFullPath))
     {
         return(pdb.VerifyPdbFiles(files));
     }
 }
Ejemplo n.º 2
0
        public static Dictionary <string, string> VerifyPdbFiles(this Project project, IEnumerable <string> files)
        {
            Argument.IsNotNull(() => project);

            var pdbFile = GetOutputPdbFile(project);

            using (var pdb = new PdbFile(pdbFile))
            {
                return(pdb.VerifyPdbFiles(files));
            }
        }
Ejemplo n.º 3
0
 public static Dictionary<string, string> VerifyPdbFiles(this Project project, IEnumerable<string> files, string pdbFileFullPath)
 {
     using(var pdb = new PdbFile(pdbFileFullPath))
     {
         return pdb.VerifyPdbFiles(files);
     }
 }
Ejemplo n.º 4
0
        public static Dictionary<string, string> VerifyPdbFiles(this Project project, IEnumerable<string> files)
        {
            Argument.IsNotNull(() => project);

            var pdbFile = GetOutputPdbFile(project);

            using (var pdb = new PdbFile(pdbFile))
            {
                return pdb.VerifyPdbFiles(files);
            }
        }