Ejemplo n.º 1
0
        public void RunStarted(object automationObject, Dictionary <string, string> replacementsDictionary, WizardRunKind runKind, object[] customParams)
        {
            dte = (DTE)automationObject;

            string slnPath     = replacementsDictionary["$solutiondirectory$"] + "/";
            string slnFilename = replacementsDictionary["$specifiedsolutionname$"] + ".sln";

            slnExists = File.Exists(slnPath + slnFilename);

            Props.CreateDotNetDirectoryProps(slnPath);
        }