Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to exclude folder from ReSharper (javascript) rename refactor (and possible other operations)?

I am using an ASP MVC project. Both the /Content and the /Script folder has a Kendo subfolder which contains enormous sized files. As a consequence when I am using say a simple ReSharper parameter rename refactor on a controller's action method ReSharper starts to search for minutes in .js files (OK, I understand why), however the Kendo subfolder could be safely skipped.

As a workaround it would be great to exclude the 2 Kendo subfolders from rename refactor, and possibly other operations. How can I accomplish this?

like image 277
g.pickardou Avatar asked May 14 '15 09:05

g.pickardou


1 Answers

Have you tried excluding the files from the solution in Visual Studio? Right-click on the folder/file, choose Exclude from project.

like image 194
danwellman Avatar answered Nov 14 '22 20:11

danwellman