generated from microsoft/AL-Go-PTE-Preview
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
57 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".AL-Go" | ||
} | ||
], | ||
"settings": {} | ||
"folders": [ | ||
{ | ||
"path": "MyFirstApp" | ||
}, | ||
{ | ||
"path": ".AL-Go" | ||
} | ||
], | ||
"settings": {} | ||
} |