Hello everyone,
I am new to BC development, I am trying to connect BC sandbox environment hosted in the cloud to Visual studio code, but when I try to download the symbols I receive the following errors
[2021-09-17 11:52:56.12] The request for path /v1.0/sandbox/dev/packages?publisher=Microsoft&appName=System Application&versionText=18.0.0.0 failed with code NotFound. Reason: Not Found
[2021-09-17 11:52:56.15] The request for path /v1.0/sandbox/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0 failed with code NotFound. Reason: Not Found
[2021-09-17 11:52:56.17] The request for path /v1.0/sandbox/dev/packages?publisher=Microsoft&appName=Base Application&versionText=18.0.0.0 failed with code NotFound. Reason: Not Found
[2021-09-17 11:52:56.17] The request for path /v1.0/sandbox/dev/packages?publisher=Microsoft&appName=System&versionText=18.0.0.0 failed with code NotFound. Reason: Not Found
Could not download reference symbols. Please ensure that:
1. The correct server name and instance are specified in the launch.json file.
2. The correct application version is specified in the app.json file.
bellow are my app.json and launch.json config
app.json
{
"id": "2304e79c-e38f-4a58-b804-7783f1eab810",
"name": "AddFieldTest",
"publisher": "Cha Ltd",
"brief": "",
"description": "",
"version": "1.0.0.0",
"privacyStatement": "",
"EULA": "",
"help": "",
"url": "",
"logo": "",
"capabilities": [],
"dependencies": [
{
"appId": "63ca2fa4-4f03-4f2b-a480-172fef340d3f",
"name": "System Application",
"version": "18.0.0.0",
"publisher": "Microsoft"
},
{
"appId": "437dbf0e-84ff-417a-965d-ed2bb9650972",
"name": "Base Application",
"version": "18.0.0.0",
"publisher": "Microsoft"
}
],
"screenshots": [],
"application": "18.0.0.0",
"platform": "18.0.0.0",
"runtime": "2.0",
"idRange": {
"from": 60000,
"to": 60005
}
}
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Microsoft cloud sandbox",
"type": "al",
"request": "launch",
"startupObjectId": 22,
"breakOnError": true,
"breakOnRecordWrite": false,
"server": "https://businesscentral.dynamics.com/",
"tenant": "**My tennant ID**"
}
]
}
This are the details of the sandbox environment

and this are dependencies which I targeted in the app.json
I have tried to use the sandbox name property in the launch.json but this did not work, and it produced the same error message. Also for some reason which is not clear to me, when I add the property VS code shows the property is not allowed
In order to download the symbols I have also tried to clear my credential cache but this did not help