How to get new project options in a customer wizard(VS2008)

26 views Asked by At

I'm developing a customre wizard. In my wizard, I wanna know the new project's option: add to solution? new solution or new solution and create a new directory? Doese anyone know how to do this. I'm a newbie. thank you in advanced.

1

There are 1 answers

0
Da Ma On BEST ANSWER
            IDictionaryEnumerator de = replacementsDictionary.GetEnumerator();
            while (de.MoveNext())
            {
                if (de.Key.ToString() == "$projectname$")
                {
                    projectName = de.Value.ToString();
                    break;
                }
            }

Thanks Dma