vote up 0 vote down star
1

Hello everyone,

I am using VSTS 2008. I have two projects (both are written in C#) in one solution file. Project 1 depends on the output (DLL2) of project 2. So, in project 1, I am using "References --> Add Reference --> Browse", then find and select the DLL2 generated by project 2.

My question is, I am not sure whether using such method to add reference will result in some my local computer specific file path dependencies? In more details, suppose both of projects are located in folder d:\testprojectsolution (d:\testprojectsolution\project1 and d:\testprojectsolution\project2), I want to make sure that if I copy the whole solution folder d:\testprojectsolution (with the same structures of project1/project2) to other people under different location (e.g. c:\my documents\sampleprpjects\projects), they could build successfully (not dependent on any specific file path on my local machine, for example, no need to find files under d:\testprojectsolution\project2 or something).

If my approach to add reference dependencies could result in some specific file path dependencies, please let me know how to solve this issue. :-)

thanks in advance, George

flag

43% accept rate

1 Answer

vote up 8 vote down

Instead of adding the reference using Browse, add it using Projects tab. It'll automatically consider the project dependency (and thus build order) and other stuff.

link|flag
2  
If you add the DLL directly, it'll consider it as a separate entity. It'll not take anything into account. It doesn't care that the reference is in the same solution and should be built before this project and will not rebuild the project if the reference is updated. – Mehrdad Afshari Apr 26 at 12:06
1  
@George2: I understand. It'll fix that too. – Mehrdad Afshari Apr 26 at 12:13
2  
George: Visual Studio uses relative paths where possible. I.e. if you have c:\a\b\c\Binaries, c:\a\b\c\Solution1\Project1 and c:\a\b\c\Solution1\Project2, references from Project1 to Project2 will be "..\Project2" and references to dlls in Binaries will be "..\..\Binaries\foo.dll". So don't worry :) – Anton Tykhyy Apr 26 at 12:13
1  
@George2: You can test that it works by moving the project folder to another location on your PC and try opening it in VS. You'll see that it'll work. – Mehrdad Afshari Apr 26 at 12:17
1  
When your references are in the same solution, the project approach is preferable as I mentioned above. It'll always work. The browse method might add absolute references which can be undesirable. – Mehrdad Afshari Apr 26 at 12:25
show 8 more comments

Your Answer

Get an OpenID
or

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