Hello,
I found this post: https://community.dynamics.com/business/f/758/t/298407 and it says it is possible to deploy your app to an online sandbox but I can't figure it out. I wanted to do it by using the Install action on extension management but that is disabled. I guess I don't know what to put in my launch.json. Specifically I don't know what to put in the server and serverinstance parameters. This is what I have currently. Is this the way you go about deploying to an online sandbox? How do I figure out what to put in the serverinstance?
{
"version": "0.2.0",
"configurations": [
{
"type": "al",
"request": "launch",
"name": "Your own server",
"server": "https://businesscentral.dynamics.com/(tenantid)/sandbox",
"tenant": "",
"serverInstance": "NAV",
"authentication": "UserPassword",
"startupObjectId": 22,
"startupObjectType": "Page",
"breakOnError": true
}
]
}