Rename failed - it also renamed the parent folders. #44
jeffward01
started this conversation in
General
Replies: 1 comment 1 reply
-
this is per design - see the readme:
that being said, one could add an option that tells renamer to not expect said convention - I'm open for a PR :-) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a directory structure of this:
targetDirectory/mySolution.sln
targetDirectory/LibMain/lib/MyProject.RemoveThis.csproj
When I perform the project rename command:
It completes successfully... However the issue is that it also renames the parent directory:
targetDirectory/LibMain/MyProject/MyProject.csproj
The
lib
parent directory is changed to the name of the project, which in this case isMyProject
Current:
targetDirectory/LibMain/lib/MyProject.RemoveThis.csproj
targetDirectory/LibMain/MyProject/MyProject.csproj
Expected:
targetDirectory/LibMain/lib/MyProject.RemoveThis.csproj
targetDirectory/LibMain/lib/MyProject.csproj
Thanks
Beta Was this translation helpful? Give feedback.
All reactions