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.