Reputation: 19181
I renamed a folder using Tortoise SVN which creates a new folder.
Now I want to add it again but there is no add existing folder option and I can't show all files at the solution level.
How can it be done?
EDIT: I know that solution folders are virtual, I would like to import an existing hierachy.
Upvotes: 0
Views: 770
Reputation: 20044
Folders on the solution level correspond to projects. So just add the existing project file (.csproj, .vbproj, .vcproj) to your solution from the new folder (if you have a reference to the project at the old location in your solution, remove it first).
However, if you are talking about a subfolder within a project, quickest way to get it right is to open the project file with a simple text editor like notepad, find the old folder name within there and rename it manually.
Upvotes: 1
Reputation: 117230
It cant be done. Solution folder are 'virtual'. Solution files are just links to the actual file location.
Upvotes: 1