Like someone else, you probably passed this problem a long time ago, but I thought I would throw my solution in the mix.
My problem was a little different. I need a different version of the DLL than the GAC, so my build server could compile the project without installing .dll on it.
To fix this, I manually edited the .csproj file (.vbproj) (using notepad) and updated the link file to point to the local version. If this proves difficult in the future, I will have to delete the project and just use the DLL.
In my case, I changed the line:
<Reference Include="Microsoft.Data.Entity.CTP, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" />
:
<Reference Include="Microsoft.Data.Entity.CTP, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\Lib\Microsoft.Data.Entity.CTP.dll</HintPath> </Reference>
where ..\Lib is the directory at the solution level, one directory from the project file.
frank hadder
source share