I'm working on an automated process to build a base application to include common libraries and projects, check everything into source control and setup the base build for the solution. Most of the issues I've solved except one. Is it possible to intercept the user given path for the solution and projects and alter that path?
In other words.
the user gives C:/Projects/App1 on the create new project screen. the solution and projects actually get stored at C:/Projects/App1/trunk/source/App1
I want to change the path to facilitate how our TFS is setup for continuous builds. I've solved most other problems except this one and it seems like this should be the simplest. I tried to see if I could change it within my IWizard class but so far, no luck. Any suggestions would be greatly appreciated.
I should add that this process is being triggered by the user selecting a custom template. If there is no answer using a custom template, I will switch to a VS add-in.
-Scott