Exemplo n.º 1
0
 /// <summary>
 /// Reads settings from settings store
 /// </summary>
 private void Load()
 {
     CrmConnections       = GetCrmConnections();
     SelectedConnectionId = _settingsStore.GetGuid(CollectionPath, SelectedConnectionIdPropertyName);
     try
     {
         ConfigurationVersion = _settingsStore.GetString(CollectionPath, SettingsVersionPropertyName);
     }
     catch (Exception ex)
     {
         Logger.WriteLine($"Settings {SettingsVersionPropertyName} not found");
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Reads settings from settings store
 /// </summary>
 private void Load()
 {
     CrmConnections       = GetCrmConnections();
     SelectedConnectionId = _settingsStore.GetGuid(CollectionPath, SelectedConnectionIdPropertyName);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Reads settings from settings store
 /// </summary>
 private void Load()
 {
     CrmConnections       = GetCrmConnections();
     SelectedConnectionId = _settingsStore.GetGuid(CollectionPath, SelectedConnectionIdPropertyName);
     ConfigurationVersion = _settingsStore.GetString(CollectionPath, SettingsVersionPropertyName);
 }