I have followed steps to install AL through VSIX & through extensions in Visual studio code.
I receive the error The package cache c:\Users\ajaysukhlal\Documents\AL\ALProject1\./.alpackages could not be found. in app.json file
my launch.json file :
{
"version": "0.2.0",
"configurations": [
{
"name": "Your own server",
"request": "launch",
"type": "al",
"environmentType": "OnPrem",
"server": "http://localhost",
"serverInstance": "BC140",
"port": 8080,
"authentication": "UserPassword",
"startupObjectId": 22,
"startupObjectType": "Page",
"breakOnError": true,
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true,
"tenant": "default"
}
]
}
my app.json file:
{
"id": "12bf875a-8cd0-432d-9e24-00e3a42f2ec2",
"name": "ALProject2",
"publisher": "Default publisher",
"version": "1.0.0.0",
"brief": "",
"description": "",
"privacyStatement": "",
"EULA": "",
"help": "",
"url": "",
"logo": "",
"dependencies": [],
"screenshots": [],
"platform": "14.0.0.0",
"application": "14.0.0.0",
"idRanges": [
{
"from": 50100,
"to": 50149
}
],
"showMyCode": true,
"runtime": "3.0"
}