up vote 13 down vote favorite
5
share [g+] share [fb]

I know that I can add a HintPath to an external DLLs to help Visual Studio/TFS find the dll when it builds.

What I was wondering is... is it possible to add multiple HintPath?

For example... developers have their DLLs for one place and we do a GetLatest of those DLLs at a different place on the server hence the need for multiple HintPath.

What do you think, world?

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

Alright. I'm faster than Stackoverflow this time. I tried to add it and it seems to work fine.

So multiple HintPath IS possible.

When you have this:

<Reference Include="System.ComponentModel.Composition.Codeplex">
    <HintPath>..\..\..\MEF2_Preview2\bin\System.ComponentModel.Composition.Codeplex.dll</HintPath>
</Reference>

You can simply add more hint path like that:

<Reference Include="System.ComponentModel.Composition.Codeplex">
    <HintPath>..\..\..\MEF2_Preview2\bin\System.ComponentModel.Composition.Codeplex.dll</HintPath>
    <HintPath>D:\MEF\System.ComponentModel.Composition.Codeplex.dll</HintPath>
</Reference>

Thanks anyway.

link|improve this answer
1  
Did you just add multiple HintPath entries, or have multiple paths in a single entry? – Soo Wei Tan Oct 1 '09 at 17:07
1  
if single entry, was it comma seperated or semicolon? – Maslow Jun 11 '10 at 13:14
1  
Could you please tell us how it is possible? – iik Jul 16 '10 at 16:23
To do this, I close the solution, open the project file in Notepad (it ends with .csproj), then you will see the above code. – Iain Dec 1 '10 at 0:41
feedback

(Found this question when resolving an issue with hintpaths and I have to correct the above answer).

Your answer is flawed. Yes, you can add multiple hintpaths manually to your csproj file, but Visual Studio will only use the last hintpath element.

It probably works in your situation because your second hintpath can be resolved. Try it by swapping your hintpaths so that d:\MEF\System.ComponentModel.Composition.CodePlex.dll is the first. Then compile. You will probably see that Visual Studio will now try to reference the last hintpath.

link|improve this answer
feedback

You can use environment variables for that. E.g.

<Reference Include="System.ComponentModel.Composition.Codeplex">
    <HintPath>$(PathToDLLs)\MEF2_Preview2\bin\System.ComponentModel.Composition.Codeplex.dll</HintPath>
</Reference>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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