Beispiel #1
0
        private void configurar_svn(string arg1)
        {
            string ruta;


            if (!String.IsNullOrEmpty(arg1))
            {
                ruta = arg1;

                Conf_conf.rutaSVN = ruta;

                SVN.Struct_SVN.Conf_Serializar(Conf_conf);
                Conf_conf = SVN.Struct_SVN.Conf_Deserializar();
                System.Console.WriteLine("Registro reconfigurado");
                System.Console.WriteLine("Nueva ruta repositorio: " + ruta);
            }
            else
            {
                throw new FormatException("Parametro no valido");
            }
        }
Beispiel #2
0
 public Command(Struct_SVN.Conf conf)
 {
     _conf = conf;
 }
Beispiel #3
0
 public Command(List <Struct_SVN.List_SVN> lst_svn, Struct_SVN.Conf conf)
 {
     _lst_svn = lst_svn;
     _conf    = conf;
 }
Beispiel #4
0
 public Opciones()
 {
     ListSVN   = SVN.Struct_SVN.Deserializar();
     Conf_conf = SVN.Struct_SVN.Conf_Deserializar();
 }