vote up 6 vote down star

so i have been doing some refactoring and reorganization and i have moved a bunch of files around.

i want to update each file so it has the "correct" namespaces according to its new location.

with resharper, i can go into each file and it shows me that the namespaces is incorrect but that way i need to do it each file at a time.

is there anyway to update namespaces across every file in a folder or a project?

flag

3 Answers

vote up 1 vote down check

I think that R# doesn't have this function. You can use CTRL-SHIFT-H to find&replace the string.

link|flag
can you do find /replace just in a folder? – oo Apr 26 at 18:05
1  
yes, you can do find/replace in a folder: in the Find In Files dialog, click the button with an ellipse next to the 'Look In' field, then specify your target folder(s) – Stuart Dunkeld Apr 26 at 18:12
vote up 0 vote down

This isn't quite what you want to do ... but hopefully it's helpful.

Go to the class view, and rename the namespace using Ctrl+R,R. It will update that namespace in all the files/folders that it's used in. As long as your namespaces are consistant, it should acheive the same result as changing all the namespaces in a folder.

If your namespaces aren't consistant, and you're just tidying up then I'm afraid you've got a lot of clicking in front of you (or behind you as you've probably already done this).

link|flag
vote up -2 vote down

You can rename an entire namespace, I believe.

link|flag
thats not what i want. i want to take an existing folder and have all the files in that folder update to ensure that it has the correct namespace based on the folder structure. – oo Apr 26 at 18:04
Ah, sorry. I thought you were still moving things around. If you're already moved them, then I don't think that ReSharper has an obvious way to do it. They have an extensibility API, but it's very poorly documented (i.e., not documented). I would recommend you ask JetBrains about this. – John Saunders Apr 26 at 22:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.