Esempio n. 1
0
 /// <summary>
 /// Restore configuration data from backup using all available contexts.
 /// </summary>
 protected void backupRestore()
 {
     if (CfgManager.IsExistCfg(ContextType.Solution))
     {
         backupRestore(ContextType.Solution);
     }
     backupRestore(ContextType.Common);
 }
Esempio n. 2
0
 /// <summary>
 /// Updating of deep copies from configuration data using all available contexts.
 /// </summary>
 protected void backupUpdate()
 {
     backupUpdate(ContextType.Common);
     if (CfgManager.IsExistCfg(ContextType.Solution))
     {
         backupUpdate(ContextType.Solution);
     }
 }