I'm looking for a way to organize projects into a specific folder structure using the Guidance Automation Toolkit.I've created a solution that has 2 projects, a web app front end and a presenter/view so-called module backend. I want to put these into a specific folder structure like the following
.sln file -- InputDirectory / ModuleName
.csproj (module) -- InputDirectory / ModuleName / ModuleName
.csproj (webapp) -- InputDirectory / WebSites / ModuleName
The reason that this is being automated because all of the modules use a main site as a sort of "splash page" they all register with to show up and directory structure is very important.I have all of the files being copied out to the correct directories, I just need to update the .sln file to contain references to the moved .csproj files.
Anybody have any idea how I can accomplish this? I'm trying to create an action to do it (that's how I'm copying the directories over) but nothing I can easily see. One problem I have is that both .csproj files are named the same, and they're in a Solution Folder, so I can't just addFiles to the solution, and I don't really know how to programmatically add solution folders.
Thanks,
Duane