Inside VS2005, our whole programming staff gets this error message sporadically and it is always on the BeneControls project. This error me
Version=1.0.3289.23008 - that tells me you version number is constantly changing, have you thought about fixing on a version number during development?
On AssemblyInfo.vb:
Currently it is set to increment:
[assembly: AssemblyVersion("1.0.*.*")]
Change to:
[assembly: AssemblyVersion("1.0.0.0")]
And you have it in a fixed version.
Well, I am not a developer but I got to deploy a project which actually send fax using the fax services on windows 2008 server 64bit. the project was developed on a windows 32bit platform and I was setting all the information according to the given instruction but still I this annoying error and then I found the solution and that was to change the platform from anycpu to x86 and it worked. for a complete setting list please follow the link below: http://www.sizledcore.com/2011/10/could-not-load-file-or-assembly/
I've seen this in the past in a situation where the control was in the same assembly as the consumer - the GAC and versioning didn't help there -- it seems to be related to the way that the designer locks the assembly in memory, and refuses to budge.
The advice our developers have is to not leave form designers open when closing VS, or switching between build types (I think it's due to the sharing the same output folder between build configurations in VB.Net)