Forum Discussion
MakeAppX and uap3:Verb attribute parameters incorrectly validating
- Dec 22, 2020
Hi TIMOTHY_MANGAN ,
ST_Parameters is based on ST_NonEmptyString. ST_NonEmptyString doesn't allow empty string at the beginning of the string.
AppxManifest parameter doesn't need leading space because the system injects the space between the executable and the arguments.
If you want to use quotes, you have the following options:
Parameters='/patchfile: "%1"'
Parameters="/patchfile: "%1""Thanks
-Josue
Hi TIMOTHY_MANGAN ,
ST_Parameters is based on ST_NonEmptyString. ST_NonEmptyString doesn't allow empty string at the beginning of the string.
AppxManifest parameter doesn't need leading space because the system injects the space between the executable and the arguments.
If you want to use quotes, you have the following options:
Parameters='/patchfile: "%1"'
Parameters="/patchfile: "%1""
Thanks
-Josue
luiscalv Thanks. I guess I missed that part of the validation.
It is a pita that the schemas are so stringent on syntaxes that have been acceptable in the past (Win32/.Net Framework). This slows down the progress for moving to the new. I don't have any expectations that will change, just registering frustrations.