vote up 1 vote down star

When adding a reference to an assembly located within the solution directory, is there any way to add it relatively, so that when checked in and out of a repository it is referenced in projects correctly?

flag

1  
If it doesn't quite work from the UI, remember that you can just hand-edit the .proj file directly and change the path to relative. Once you change it either way, it stays the way you've put it. – Pavel Minaev Jul 31 at 5:05

4 Answers

vote up 2 vote down check

Yes, just create a directory in your solution like lib/, and then add your dll to that directory in the filesystem and add it in the project (Add->Existing Item->etc). Then add the reference based on your project.

I have done this several times under svn and under cvs.

link|flag
2  
You don't need to add the dll to the project itself, just add reference to it. The best thing to do is to add the whole 'lib' directory to your source control. See code.google.com/p/projectpilot/… as an example – Igor Brejc Jul 31 at 5:02
You are right. I checked an old project and neither the directory or the dlls were added to the project itself, just to the repository. And the reference is then relative to the project. Sorry about that. – Freddy Jul 31 at 5:08
vote up 0 vote down

I agree with Pavel Minaev's original comment on jimioh's post above ( I cannot comment on it directly because I don't have enough points)

To expand on this - The GUI for visual studio supports relative references with the assumption that your .sln is the root of the relative reference. So if you have a solution C:/myProj/myProj.sln, any references you add in subfolders of C:/myProj/ are automatically added as relative references.

To add a relative reference in a separate directory, such as C:/myReferences/myDLL.dll, do the following::

  1. Add the reference in Visual Studio GUI by right-click add reference
  2. Find the *.csproj where this reference exist and open it in a text editor
  3. Edit the < HintPath > to be equal to

    < HintPath >....\myReferences\myDLL.dll< /HintPath >

This now references C:/myReferences/myDLL.dll. (Also remove the spaces between angle brackets and HintPath)

Hope this helps.

link|flag
vote up 0 vote down

Probably, the easiest way to achieve this is to simply add the reference to the assembly and then (manually) patch the textual representation of the reference in the corresponding Visual Studio project file (extension .csproj) such that it becomes relative.

I've done this plenty of times in VS 2005 without any problems.

link|flag
I think it is not necessary to modify the project file manually. In my experience Visual Studio always uses relative pathes. The only time I had to modify the project file by hand was when I wanted to share a key file (.snk). Visual Studio always just copies the key file into the project directory which results in several copies of the key file. – Stefan Egli Jul 31 at 7:27
vote up 0 vote down

When you go to your project, right click on References and click Add Reference, go to the Browse tab and you can add a dll from anywhere within your solution (i.e. in a Library folder in the root directory of your solution).

link|flag

Your Answer

Get an OpenID
or

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