Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I want to verify whether a project is an extension. Using the code snippet below, we can retrieve a list of all extensions and iterate through them. However, in our case, the project name and its extension name might differ. How can we identify it in such a scenario?
result = Subsystems["PlatformSubsystem"].GetExtensionPackageList();
Solved! Go to Solution.
The same subsystem has a GetExtensionPackageDetails service which accepts as an input the name of the package you get from the service you mentioned. The output is the list of entities, including their type.
The same subsystem has a GetExtensionPackageDetails service which accepts as an input the name of the package you get from the service you mentioned. The output is the list of entities, including their type.