~coapp-devtool-developers/coapp-mkpackage/trunk

« back to all changes in this revision

Viewing changes to SigVerifier.cs

  • Committer: Eric Schultz (wwahammy@gmail.com)
  • Date: 2011-02-08 03:50:33 UTC
  • Revision ID: wwahammy@gmail.com-20110208035033-urd2w0vy9zlnaol5
Updates to allow .net assemblies to work. REGRESSION: Policy Assemblies don't work at all.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        /// </summary>
28
28
        /// <param name="nonAssemblies">a list of PE files that aren't in an assembly</param>
29
29
        /// <returns></returns>
30
 
        internal bool VerifyNonAssemblies(List<String> nonAssemblies)
 
30
        internal bool VerifyNonAssemblies(IEnumerable<String> nonAssemblies)
31
31
        {
32
32
             bool ret = true;
33
33
            
54
54
        }
55
55
 
56
56
 
57
 
        internal abstract bool VerifyAssemblies(List<String> assemblies);
 
57
        internal abstract bool VerifyAssemblies(IEnumerable<String> assemblies);
58
58
 
59
59
    }
60
60
}