Rushino
Rushino

Reputation: 9485

Where Visual Studio does save DLL references paths?

I have looked in the .vbproj and i thought visual studio 2010 was using the HintPath element in the file to figure out where to load the referenced DLL. But it seem that it is wrong. Problem i have is that Nuget program when done getting the facultative DLLs (important, do not apply to non-facultative ones) point to the bin of the actual project instead of pointing to the packages folder. So i decided to write a small application which correct the path to thoses DLL from the .vbproj. The references in my project of an actual project doesn't seem to reflect the vbproj hint path.

So my question is.. Where Visual Studio does save DLL references paths ? and what it do with it.

Upvotes: 2

Views: 963

Answers (1)

Gangadhar Heralgi
Gangadhar Heralgi

Reputation: 219

Hint Path is right place, in addition you can check for Project/Properties/Reference paths in the IDE

Upvotes: 1

Related Questions