Exemple #1
0
        public static bool Sign(this ISignUsing This, string Assembly, string Certificate)
        {
            var Args = new SignAssemblyParameters()
            {
                Certificate = Certificate,
                Assembly    = Assembly,
            };

            return(This.Sign(Args));
        }
Exemple #2
0
 public static bool Sign(this ISignUsing This, string Assembly)
 {
     return(This.Sign(Assembly, This.SignUsing.Certificate));
 }