Data Access Component conflict

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello All,
I received the following while building by application today, any ideas on
that the issue could be.
Thanks & Regards
Homer (newbie dotnet'r)
Error: The dependency 'DataAccessComponent, Version=1.0.1329.21936,
Culture=neutral' in project 'WindowsApplication1' cannot be copied to the run
directory because it would conflict with dependency 'DataAccessComponent,
Version=1.0.1812.2682, Culture=neutral'
 
First off, this should be just a warning, so nothing to worry about.

This can happen when you have multiple components using a DLL that does not
have a hard coded version, and things get out of sync.

You can:
1) Ignore the warning
2) Set Copy Local to False on the reference
3) Hard code the version on the DLL with the issue.
 
Thanks Marina,
when i set copy local to false I received an excepetion from windowsforms.dll
I will investigate further.
Thanks
 
Back
Top