The AL sample "Hello World" project https://github.com/microsoft/AL/tree/master/samples/HelloWorld is included in AL when using the "AL:Go" command.
...
Update launch.json to reference your own development server i.e.:
Code Block | ||
---|---|---|
| ||
{ |
...
"version": |
...
"0.2.0", |
...
"configurations": |
...
{
...
[ { "type": |
...
"al", |
...
"request": |
...
"launch", |
...
"name": |
...
"DOCKER05", |
...
"server": |
...
"http://10.10.139.44:5500", |
...
"port": |
...
55049, |
...
"serverInstance": |
...
"NAV", |
...
"authentication": |
...
"UserPassword", |
...
"startupObjectId": |
...
22, |
...
"startupObjectType": |
...
"Page", |
...
"breakOnError": |
...
true, |
...
"launchBrowser": |
...
true, |
...
"schemaUpdateMode": |
...
"Synchronize" |
...
}
]
} ] } |
Download symbols (Ctrl+Shift+P, AL: Download symbols)
...