Esempio n. 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));
        }
Esempio n. 2
0
 public static bool Sign(this ISignUsing This, string Assembly)
 {
     return(This.Sign(Assembly, This.SignUsing.Certificate));
 }
Esempio n. 3
0
 public static bool Sign(this ISignUsing This, SignAssemblyParameters Args)
 {
     return(This.SignUsing.Run(Args));
 }