Visual Studio 2010 で、プロジェクトのコピーを作成して同じソリューションに入れようとしています。ファイルを Windows エクスプローラーのソリューションのフォルダーの下にある別のフォルダーにコピーし、VS で元のプロジェクトから新しいプロジェクトにコピー アンド ペーストしました。
元のプロジェクトからソリューションを実行すると、正常に動作します。ただし、新しいプロジェクトから実行しようとすると、例外がスローされます。
Multiple types were found that match the controller named 'Main'. 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:
TheCopiedProject.Controllers.MainController
TheOriginalProject.Controllers.MainController
コピーしたプロジェクト (Ctrl-Shift-F) を検索しましたが、元のプロジェクトの名前空間への参照はどこにもありません。
どうやら、私は何かを忘れていたようです - これを修正するにはどうすればよいですか?