
We are still implementing BC. We are using version 22 (On Prem). I am getting an error when I try to deploy the extension.
[2023-05-19 14:21:55.19] Sending request to -------------tenant=default&SchemaUpdateMode=forcesync&DependencyPublishingOption=default
[2023-05-19 14:22:04.91] The request for path /BC-Testing/dev/apps?tenant=default&SchemaUpdateMode=forcesync&DependencyPublishingOption=default failed with code UnprocessableEntity. Reason: Cannot upgrade the extension 'WCI Customization by Sowmya Sridhar 1.0.0.12' because one or more dependencies could not be satisfied. Unsatisfied dependencies:
Application by Microsoft 22.0.0.0
Here is our launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "AAA-AA",
"request": "launch",
"type": "al",
"environmentType": "OnPrem",
"server": "http://AAA-AA:8080/BC-Testing",
"serverInstance": "BC-Testing",
"authentication": "Windows",
"port": 7049,
"breakOnError": "All",
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true,
"tenant": "default",
"schemaUpdateMode": "Synchronize"
}
]
}
app.json
{
"id": "111111111111111111111111111111",
"name": "AAAAAAAAA",
"publisher": "Default Publisher",
"version": "1.0.0.12",
"brief": "",
"description": "",
"privacyStatement": "",
"EULA": "",
"help": "",
"url": "",
"logo": "",
"dependencies": [
{
"id" : "63ca2fa4-4f03-4f2b-a480-172fef340d3f",
"publisher": "Microsoft",
"name" : "System Application",
"version": "22.0.0.0"
},
{
"id" : "437dbf0e-84ff-417a-965d-ed2bb9650972",
"publisher": "Microsoft",
"name" : "Base Application",
"version": "22.0.0.0"
}
],
"screenshots": [],
"platform": "22.0.0.0",
"application": "22.0.0.0",
"idRanges": [
{
"from": 50000,
"to": 51999
}
],
"resourceExposurePolicy": {
"allowDebugging": true,
"allowDownloadingSource": true,
"includeSourceInSymbolFile": true
},
"runtime": "11.0",
"features": [
"NoImplicitWith"
],
"target" : "Cloud"
}
This issue is resolved. The Microsoft Application was not installed. I installed it and downloaded the symbols again. I can deploy it without any issues.