Define custom prefixes for core entity names
Edit on GitHubWhen evaluator checks project-level code entities for existing and potential matches with the core ones, it skips the entities that have the Pyz
prefix in their name. Such are considered unique and will not conflict with core entities in future because there will never be an entity with the Pyz
prefix in the core.
When solving upgradability issues, you can use the Pyz
prefix to make your entities unique. To use custom prefixes, do the following:
- Create
/tooling.yaml
- Define
Pyz
and needed custom prefixes. For example, defineZyp
as a custom prefix:
evaluator:
prefixes:
- Pyz
- Zyp
Now the evaluator considers entities prefixed with Zyp
as unique.
Thank you!
For submitting the form