NuGetAcronymExpansionProvider |
This class loads a file that contains the acronyms we want to expand. This file could look like: { "ef": [ "ef", "entity framework" ] } The above file expands "ef" into both "ef" and "entity framework". The acronym itself must be repeated in the list of expansions. This approach allows us to "replace" acronyms as well. For example, imagine we want to treat "mvc5" as just "mvc". the expansion could look like: { "mvc5": [ "mvc" ] } |