diff --git a/MyFirstApp/.vscode/launch.json b/MyFirstApp/.vscode/launch.json new file mode 100644 index 0000000..ac52f4e --- /dev/null +++ b/MyFirstApp/.vscode/launch.json @@ -0,0 +1,5 @@ +{ + "version": "0.2.0", + "configurations": [ + ] +} diff --git a/MyFirstApp/HelloWorld.al b/MyFirstApp/HelloWorld.al new file mode 100644 index 0000000..eaf92c5 --- /dev/null +++ b/MyFirstApp/HelloWorld.al @@ -0,0 +1,12 @@ +// Welcome to your new AL extension. +// Remember that object names and IDs should be unique across all extensions. +// AL snippets start with t*, like tpageext - give them a try and happy coding! + +pageextension 60000 CustomerListExt extends "Customer List" +{ + trigger OnOpenPage(); + begin + Message('App published: Hello world'); + end; +} + diff --git a/MyFirstApp/app.json b/MyFirstApp/app.json new file mode 100644 index 0000000..9a2bb41 --- /dev/null +++ b/MyFirstApp/app.json @@ -0,0 +1,31 @@ +{ + "id": "24dd0752-78ec-4967-a5b7-47cbb247f82b", + "name": "MyFirstApp", + "publisher": "Freddy", + "version": "1.0.0.0", + "brief": "", + "description": "", + "privacyStatement": "", + "EULA": "", + "help": "", + "url": "", + "logo": "", + "dependencies": [], + "screenshots": [], + "platform": "1.0.0.0", + "application": "22.0.0.0", + "idRanges": [ + { + "from": 60000, + "to": 61000 + } + ], + "features": [ + "NoImplicitWith" + ], + "resourceExposurePolicy": { + "allowDebugging": true, + "allowDownloadingSource": false, + "includeSourceInSymbolFile": false + } +} diff --git a/al.code-workspace b/al.code-workspace index 0cd1af6..8b93613 100644 --- a/al.code-workspace +++ b/al.code-workspace @@ -1,8 +1,11 @@ { - "folders": [ - { - "path": ".AL-Go" - } - ], - "settings": {} + "folders": [ + { + "path": "MyFirstApp" + }, + { + "path": ".AL-Go" + } + ], + "settings": {} }