Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Visual Studio to stop copying DLLs during build without my permission?

I have a Visual Studio project that relies on several DLL references. Here is a sample of those references in my csproj:

<ItemGroup>
  <Reference Include="Class1.Project1">
    <SpecificVersion>False</SpecificVersion>
    <HintPath>..\bin\Class1.Project1.dll</HintPath>
    <Private>False</Private>
  </Reference>
  <Reference Include="Class1.Project2">
    <SpecificVersion>False</SpecificVersion>
    <HintPath>..\bin\Class1.Project2.dll</HintPath>
    <Private>False</Private>
  </Reference>
</ItemGroup>

However, when I include this class as a project dependency in a web site project, Visual Studio is finding dependencies of the dependencies shown above. During build Visual Studio is then defaulting the "Copy Local" property to "True" and copying these dependencies into my web site's ~/bin directory.

This, in turn, is overwriting the versions of the DLL files that already exist in this directory. This causes the following error:

Could not load file or assembly 'Class5.Project5, Version=3.6.1861.2, Culture=neutral, PublicKeyToken=dfeaee0e3978ac79' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

How do I make Visual Studio default the "Copy Local" setting to "False" for everything? I do not want Visual Studio to copy DLL files automatically during build. Nor do I want to tie my build to very specific versions of a DLL.

like image 582
Gabe Sumner Avatar asked May 13 '09 19:05

Gabe Sumner


2 Answers

It sounds to me as though you have multiple projects configured to output into the same directory - is this true?

If so, you'll need to review your configuration as Visual Studio assumes (nay, requires) that each project has a unique output directory.

Also, you wrote:

This, in turn, is overwriting the versions of the DLL files that already exist in this directory.

Where did these existing files come from?

Visual Studio assumes that it has full rights to make whatever changes it sees fit in the build output directories - trying to argue with it is a fine route to a whole new world of pain.

(Unfortunately, I speak from experience. Sigh.)

like image 184
Bevan Avatar answered Sep 24 '22 02:09

Bevan


I had this problem once,

On Publish: The easiest way to prevent writing over the existing dll files is to set them as ReadOnly. You will get a warning on publish for each file that could not be replaced but it will do the job.

On Build: To set the CopyLocal automatically off you need to place the dll files on the GAC.

like image 27
Sergio Avatar answered Sep 27 '22 02:09

Sergio