vote up 1 vote down star

I checked in a project to SVN with about 15 references from one dev box then checked out the same project on a second dev box but most of the reference files are missing. Is it possible to checkin the reference files automatically?

flag

64% accept rate
Are the reference**d** files missing? Or are the references to those files broken? Are the reference**d** files inside the project directory? – Roger Lipscombe Feb 23 at 8:01
no, they were outsude the directory, componentone to be exact. – Saif Khan Feb 25 at 8:22

2 Answers

vote up 6 vote down check

Version control will only keep track of the actual files underneath the working folder. If the third party libraries are installed elsewhere on the machine, they will not be included in the source control at all. You'll have to do one of these:

  1. Ensure that the 3rd party libraries (eg, nunit, enterprise libraries) are installed on all required development machines.
  2. Don't install the libraries using the normal installers at all, instead, add the individual dll's and other resources to source control as Vendor Branches, then bring them under your project by either branching them into your project location, or by adding an svn:externals definition.
  3. Copy the required reference files under into your source locations, add them to source control and reference them from there.
link|flag
vote up 0 vote down

I think it's hard for Visual Studio SCC tools to determine wether or not these files should be automatically added. If you're using the first scenario Jim T described, you definitely don't want that to happen.

link|flag
are you saying I shouldn't use the first scenario? – Saif Khan Mar 27 at 1:26
No just that adding the references to source control should be a manual action. I don't think there's a reliable way to do it automated. – Sander Rijken Mar 28 at 9:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.