Hi All,
I have a ASP.NET web application in which I have references to a couple of Class Libraries I developed. Each of these libraries has a version number set in the AssemblyInfo.cs file.
I would like to force the application to use only libraries with a specific version. i.e.
If I have User.dll of version 2.5.0.0 which is a referenced in the web application, and I try to copy in User.dll of version 3.0.0.0 I want the application to fail... or well just give me an error of some sort.
Also I do not want to store the assemblies in the GAC.
Is there some setting in web.config file I could use?
Thanks