We have DEV / QA / Prod sites as follows:
dev: something.dev.org
qa: something-qa.dev.org/
prod: something.org/
Ideally I would like there to be somewhere in TFS that has multiple config files that I would grab conditionally, based on what build configuration is currently selected.
Example: app.config files, robots.txt files, each with their own versions for dev, qa, and prod, in TFS.
What are best practices for achieving this kind of thing?
using TFS 2010.
Sincerely, n00b.
You can consider using conditional ItemGroup in project file:
But this means project file should be edited in text editor and not sure whether VS will preserve these changes after manipulations with project files.