If I have a ASP.Net solution named "MyApp", that includes a single project "MyApp", and I then want to change both of them to "MyNewApp" - How can I do it safely, namely:
- Without (breaking and then) needing to edit manually configuration files (that's what happened when I changed the names manually, and managed to fix it using this answer).
- Without (breaking and then) needing to edit the
.sln
file. - Without needing to change the projects path.
I mean, is/are there any menu/s in VS enabling that?