The current project I have inherited is a Kentico 12 MVC implementation. I successfully got the CMS Admin site running. It currently references a bunch of assemblies in a Lib folder. They are version 12.0.29.
I decided that I wanted to change to use the Kentico nuget packages instead of referencing the files in the Lib folder, with an eye to upgrading the site to a later version. To ensure I wouldn't break anything, I decided to install the same version of Kentico 12 via the nuget package installer. So in nuget I selected Kentico.AspNet.Mvc, selected version 12.0.29, then clicked Install.
Choosing this package will also install Kentico.Libraries 12.0.29, Kentico.LanguagePack.English 12.0.29, and Kentico.AspNet.Mvc.Libraries 12.0.29. I worked my way up to this package, installing the other packages until I finally replaced all the components that my MVC app references.
I clicked install, and it installed successfully. I then cleaned the solution, then I ran the site. The site runs, but then it gets an error:
What additional assembies is it talking about? How can I fix this problem?
