public override void Execute()
        {
            base.Execute();

            var clone = _extractionConfiguration.DeepCloneWithNewIDs();

            Publish((DatabaseEntity)clone.Project);
            Emphasise(clone);
        }
예제 #2
0
        public override void Execute()
        {
            base.Execute();

            try
            {
                var clone = _extractionConfiguration.DeepCloneWithNewIDs();

                Publish((DatabaseEntity)clone.Project);
                Emphasise(clone, int.MaxValue);
            }
            catch (Exception exception)
            {
                ExceptionViewer.Show(exception);
            }
        }