Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! 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.