tags:

views:

25

answers:

0

Let's say I have a project that I'm working on that involves several different types of files: crystal reports, sql scripts, xml schemas and unit tests. What's a good way to group those files together so that they can be in one folder but come from different source control folders? Like the way that you can use "Link" files in Visual Studio (tried that, didn't like the results).

I'd ideally like to have one folder that has these files

  • insert test data sql scripts
  • cleanup test data sql scripts
  • crystal reports rpt template
  • xsd file
  • sql create/alter proc script
  • unit tests solution

In source control, I'd like all these files to be in different places (scripts that alter test data wouldn't exist in the same folder as procedure create scripts). But for the sake of working with them I'd like all the files in the same folder.

Does this require creating a new workspace?

Is this even possible in TFS? Is it dumb to do?