private static void DeleteAssemblyAndPdb(string path)
 {
     ShellUtilities.DeleteFile(Path.ChangeExtension(path, ".pdb"));
     ShellUtilities.DeleteFile(path);
 }