I am going to publish a solution template in the Azure market.
My mainTemplate.json file, for example, is easily tested without publishing, since I can deploy it from Git. But I cannot verify the UI file using a Git deployment.
So the problem is that my createUIdefinition.json file is tested in a timely manner. It seems that every time I make changes to the createUIdefinition.json file, I have to upload a new package to the publishing portal, which means that I have to wait for Microsoft certification before I can conduct the test. This is a 24-hour process.
Is there an easier way to check my createUIdefinition.json changes without going through this process?
For example, I have an error somewhere in a regex that checks one of my user inputs:
{ "name": "EmailUser", "type": "Microsoft.Common.TextBox", "label": "Email Address", "toolTip": "The email address for your account", "defaultValue": "", "constraints": { "required": true, "regex": "\\w+([-+.']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*", "validationMessage": "Must be a valid email address." }
(A side note, if anyone can find my mistake - maybe when you run away with the characters? - please let me know! There is no email address that is being verified correctly.)
And that makes me chat a little, to wait one day to check on my supposed corrections. There must be a better way, thanks!
json azure azure-marketplace
Rocky
source share