I am having this error on my new asp.net app
Multiple types were found that match the controller named 'Home'. This can happen if the route that services this request ('{controller}/{action}/{id}') does not specify namespaces to search for a controller that matches the request. If this is the case, register this route by calling an overload of the 'MapRoute' method that takes a 'namespaces' parameter.
The request for 'Home' has found the following matching controllers: Contoso.CAMPF.Sample1Web.Controllers.HomeController CAMPF.WebApp.Controllers.HomeController
The weird thing is that I dont event have a constoso namespace anywhere, I removed it, in the past I did, but I decided at some point to change assembly and namespaces names.
namespace CAMPF.WebApp.Controllers
{
public class HomeController : Controller
{
[SharePointContextFilter]
public ActionResult Index()
{