views:

31

answers:

1

why the referenced dll of a c# project is in full path? when i move the source code to a different pc, the reference is broken.

A: 

Visual Studio tries not to use full paths to DLL's whenever possible to avoid situations like this. It tries to reference DLL's with a relative path if possible.

Is there a relative path in this scenario that would work? If so could you try editing the .csproj file manually and setting it to use this relative path and see what happens?

JaredPar
yes, manually editing will work.
Benny