I have a production DNN PRO server running 6.01. I've updated my development environment to 6.2.
I've just modified a custom module in my dev environment and pushed it up to production, but I'm getting the following error.
Error: is currently unavailable.DotNetNuke.Services.Exceptions.ModuleLoadException: (0): error CS1705: Assembly 'Coaxis.Modules.BulletinAdmin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' uses 'Telerik.Web.UI, Version=2012.1.411.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' which has a higher version than referenced assembly 'Telerik.Web.UI, Version=2011.1.519.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' --->
I get what this is telling me - that the module was compiled using the newer Telerik DLL in 6.2 which doesn't match up the version of the DLL in the production server.
So, can I develop in a newer version, but deploy it to an older production version? If so - how do I get around this issue? I have the reference settings set to COPY LOCAL = FALSE and SPECIFIC VERSION = FALSE.