.NET 2003 link-library dependency-checking bug

G

Guest

There seems to be a bug in the link-library dependency checking in VS.NET 2003.
Under the Configuration->Linker->General->Additional Library Directories
property,
if you specify a directory name such as "$(SolutionDir)\..\lib", it will
link properly, but when you try to run in the IDE will complain that the
"project configuration is out of date." It turns out that $(SolutionDir)
already contains a trailing '\', so that changing the "Additional Library
Directories" to $(SolutionDir)..\lib will remove the repeated '\' and
suddenly the IDE stops complaining the project is out of date. The
dependency checker apparently gets confused by multiple repeated backslashes,
which it should not since the file system and linker handles it fine.
 
R

Ronald Laeremans [MSFT]

Hi James,

This is a known issue with VS 2003. You might want to report it on
http://lab.msdn.microsoft.com/productfeedback/ to make sure someone from our
team will try it on Whidbey and to allow other customers to vote on this if
they consider it important.

Thanks!

Ronald Laeremans
Visual C++ team
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top