berdem
berdem

Reputation: 462

Find in Files results files on another solution

I copied a solution to another directory and changed all the Namespaces, removed TFS bindings successfuly. I run the application, browsed some pages and it's all ok.

When i was checking the old namespace last one time i see "Find in Files" resulted some files that are in the old solution. Not all of the old solution matched files but some.

I tried to find what would reference that files in new solution but no success.

Any suggestion would be appreciated.

Upvotes: 1

Views: 55

Answers (1)

Christopher Rathermel
Christopher Rathermel

Reputation: 935

I am a bit of a fan boy, and this is a paid solution, but I use JustCode from Telerik for stuff like this all the time:

http://www.telerik.com/products/justcode.aspx

Other options would be something like Resharper:

http://www.jetbrains.com/resharper/

Check out the trial versions and see if they help find your issue.

You can also run this powershell command to clean up your obj and bin folders

Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }

Upvotes: 1

Related Questions