Replies: 1 comment 2 replies
-
Awesome idea 🤘 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A useful extension of
Get-D365Module
would be returning modules in the dependency order, i.e. in the order in which they should be compiled (starting from Application Platform, which doesn't depend on any other module, continuing with models depending on Application Platform only and so on).This won't be a huge change.
Get-D365Module
needs a new parameter for that and if it's set, we'll call$metadataProviderViaRuntime.ModelManifest.ListModulesInDependencyOrder()
instead of
$metadataProviderViaRuntime.ModelManifest.ListModules()
Then we'll need to change the logic at the end of the function, where the list of modules gets sorted.
Beta Was this translation helpful? Give feedback.
All reactions