Question

I'm using VS 2013 RTM Ultimate, and when I try to add a Controller to my MVC 5 project I get the following error:

"There was an error running the selected code generator: 'The Parameter searchFolders does not contain any entries. Provide at least one folder to search files.'

None of the scaffolders work basically, all giving the same error... Tried rebuidling / clean etc and still get error.

Update Oct 28: Looks like it is a problem with having T4Scaffolding installed. Looks like they are working on a fix.

Was it helpful?

Solution

If you have recently installed a package with T4Scaffolding dependency (ex. MVCMailer uses T4Scaffolding.Core), then you can uninstall T4Scaffolding.Core and restart VS 2013. Notice that MvcMailer which caused this in my case, won't work in 2013. Best is to check your references or packages for suspects.

From comments: Uninstalling it didn't seem to work for me, so I deleted packages/T4Scaffolding from the disk* and then it worked. (by Jared Thirsk)

OTHER TIPS

I used package manager console to uninstall MVCScaffolding, T4Scaffolding, and T4Scaffolding.Core according to their dependencies. Restart VS2013 and it works.

I'm facing same situation with you. what i did was

  1. open packages.config remove T4Scaffolding.Core and T4Scaffolding

  2. Reinstall those packages Install-Package T4Scaffolding and Install-Package T4Scaffolding.Core

  3. Close VS2013 and reopen and you should able to scaffold again

Good Luck!

In my case the fix worked, but I had two projects in the same VS solution, and the one where I was trying to add a scaffolded controller did not have T4Scaffolding installed. It was a part of the second project. When I unloaded the second project and restarted the IDE, the error went away.

This situation is arriving when you already have T4Scaffolding used in one of your projects in the solution and you added the web project later. Uninstalling T4Scaffolding and T4Scaffolding.Core from package manager console resolved the issue. Somehow I lost the reference to EntityFramework also while uninstgalling the scaffolding, so I had to add the EntityFramework reference again.

Usually after I have installed some new nugget packages, I bump into this error in an attempt to add/scaffold a new controller for example. My solution is just restart VS2013

Install prerelease of MvcMailer for VS2013 (run VS as administrator) https://www.nuget.org/packages/MvcMailer-vs2013/4.5.1-pre

Updgrade EntityFramework.

Install-Package EntityFramework -Version 6.1.2 

In case you do NOT have MVCScaffolding or T4Scaffolding packages installed and you encounter this bug/problem, check my solution here:

Scaffolding controller doesn't work with visual studio 2013 update 2

To sum up: the problem can be caused by the connection string. In my case I used localdb, I switched to a connection string to a standard sql server, then tried to generate the controller with MVC views and it worked.

I tried to switch back the connection string to localdb, it didn't work. So that must have been the problem...

My solution was to open VS installer, then go to modify and install .net framework templates

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top