void IWizard.RunStarted(object automationObject, Dictionary <string, string> replacementsDictionary, WizardRunKind runKind, object[] customParams)
        {
            EnvDTE.DTE dte      = automationObject as EnvDTE.DTE;
            Array      projects = dte.ActiveSolutionProjects as Array;

            Form nextForm = new frmProcessDebugGen((Project)projects.GetValue(0), replacementsDictionary["$rootname$"]);

            nextForm.ShowDialog();
        }
        public void WIZARDS_GenerateOrchestrationScenario()
        {
            Form frm = new frmProcessDebugGen(@"C:\Temp\BizWTF\Exported", "MyTimeline.xml");

            frm.ShowDialog();
        }