Adjusting DLLs in VS
Adjusting DLLs in VS I had an old Visual Studio project where I had a mismatch of old v12.1 Dlls in the deployment folder but had v13.1 references in the code of the project. So I needed to downgrade, however most of the time you are modernizing instead. 1. The Project Files (.csproj or .vbproj) Open the files in a text editor and look for the <Reference> tags. Change the reference names from DllName.v13.1 to DllName.v12.1 . Change from Version=13.1.x.x to Version=12.1.x.x matching your actual DLLs. Verify <HintPath> points to your local Lib folder where you put the renamed v12.1 DLLs. 2. Configuration Files (web.config or app.config) Third parties often registers their HTTP handlers, modules, and compilation assemblies here. Replace all instances of v13.1 and Version=13.1.x.x with 12.1 equivalents. 3. The License File (licenses.licx) This file lives inside your project's Properties or My Project f...