Base solution for your next web application
Open Closed

Rename MPA folder #848


User avatar
0
montanaprogrammer created

Considering renaming "MPA" to something else, any ill effects anyone can think of?

  • Rename Areas/MPA tp Areas/FolderNameHere
  • Search/replace /Mpa => /FolderNameHere

TIA! :)


3 Answer(s)
  • User Avatar
    0
    hikalkan created
    Support Team

    After do it, I suggest to make a search for "Mpa" and see if there is any missing point.

  • User Avatar
    0
    maxmjbn created

    I did a search and replace for:

    /Mpa/
    

    To:

    /NewFolder/
    

    Then, I did a search and replace for:

    Mpa/
    

    To:

    NewFolder/
    

    Then, I changed in the Web project "Controllers/ApplicationController.cs" the redirect area to "NewFolder".

    You should also consider doing a search and replace for your namespaces:

    .Areas.Mpa.
    

    To:

    .Areas.NewFolder.
    

    Finally, I did a search to validate that I did not miss anything. All good!

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    @maxmjbn, Thank you for sharing your experience :).