Skip to content

Commit b682b88

Browse files
authored
Merge pull request #1 from amiccin-msys/create-pte/main/251003083408
New PTE (app1)
2 parents d35c496 + 3ce0400 commit b682b88

File tree

4 files changed

+56
-6
lines changed

4 files changed

+56
-6
lines changed

al.code-workspace

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
2-
"folders": [
3-
{
4-
"path": ".AL-Go"
5-
}
6-
],
7-
"settings": {}
2+
"folders": [
3+
{
4+
"path": "app1"
5+
},
6+
{
7+
"path": ".AL-Go"
8+
}
9+
],
10+
"settings": {}
811
}

app1/.vscode/launch.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
]
5+
}

app1/HelloWorld.al

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Welcome to your new AL extension.
2+
// Remember that object names and IDs should be unique across all extensions.
3+
// AL snippets start with t*, like tpageext - give them a try and happy coding!
4+
5+
pageextension 55000 CustomerListExt extends "Customer List"
6+
{
7+
trigger OnOpenPage();
8+
begin
9+
Message('App published: Hello world');
10+
end;
11+
}

app1/app.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"id": "493a04e9-f1ec-4009-ab6a-5699c45c165c",
3+
"name": "app1",
4+
"publisher": "microsys",
5+
"version": "1.0.0.0",
6+
"brief": "",
7+
"description": "",
8+
"privacyStatement": "",
9+
"EULA": "",
10+
"help": "",
11+
"url": "",
12+
"logo": "",
13+
"dependencies": [],
14+
"screenshots": [],
15+
"platform": "1.0.0.0",
16+
"application": "22.0.0.0",
17+
"idRanges": [
18+
{
19+
"from": 55000,
20+
"to": 55100
21+
}
22+
],
23+
"features": [
24+
"NoImplicitWith"
25+
],
26+
"resourceExposurePolicy": {
27+
"allowDebugging": true,
28+
"allowDownloadingSource": false,
29+
"includeSourceInSymbolFile": false
30+
}
31+
}

0 commit comments

Comments
 (0)