-
I was using a built-in TCC variable function (@xmlxpath[]) to dig Properties/DisplayName out of AppxManifest.xml. With the latest versions, 1.12 stable and 1.13 preview, I'm just getting "ms-resource:TerminalApp/ContextMenu/AppStoreNamePre". How do I turn that into a display name? Thanks! ... Vince |
Beta Was this translation helpful? Give feedback.
Answered by
DHowett
Feb 7, 2022
Replies: 1 comment 2 replies
-
So, this is a localized resource specifier. I think you need to use the modern resource APIs to resolve it. For what it's worth, the correct way to handle app packages is to use the ApplicationModel APIs, not to grovel through XML manually. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
vefatica
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So, this is a localized resource specifier. I think you need to use the modern resource APIs to resolve it.
For what it's worth, the correct way to handle app packages is to use the ApplicationModel APIs, not to grovel through XML manually.