Ejemplo n.º 1
0
        private void OpenConfigureServerDialog()
        {
            bool anyChanges = ConfigureServers.Show(_settings);

            if (anyChanges)
            {
                _settings.ClearDuplicateNameCache();
                StopWatchingBuild();
                _rulesEngine = null; // reset the rules engine in case it changed (e.g. from TFS to Team City)
                StartWatchingBuild();
            }
            Activate();
            Focus();
            _viewBuilds.ReinitializeGettingStarted();
        }