Hi !
I'm trying to make my first extension on a isolated docker container. I think I've followed all the steps in documentation. I have fully access to web client, windows client and c/side development environment. However when i try to publish an extension with a tableextension and pageextension of Country/Regions entity, always I get this the following error:
Error Could not publish the package to the server. See Visual Studio Code debug console for more details Close Open launch.json:
But the debug console is blank.....
This is the information creating docker container....
Host is Windows 10 10.0.17134.0 - 1803
Pulling image microsoft/bcsandbox:es
es: Pulling from microsoft/bcsandbox
Digest: sha256:4e46e5b15b04cc7c3bcca5615912625efecc550663214be9ec642c873ecced89
Status: Image is up to date for microsoft/bcsandbox:es
Using image microsoft/bcsandbox:es
Removing container HtlBCDev600
Removing HtlBCDev600 from hosts
Removing C:\ProgramData\NavContainerHelper\Extensions\HtlBCDev600
Creating Nav container HtlBCDev600
NAV Version: 13.0.24630.25789-ES
Generic Tag: 0.0.7.1
Container OS Version: 10.0.14393.2551 (ltsc2016)
Host OS Version: 10.0.17134.0 (1803)
The container operating system does not match the host operating system, forcing hyperv isolation.
Creating container HtlBCDev600 from image microsoft/bcsandbox:es
e42c6214d65e0cd9b0b69c9f885f2b0cd92b91487ff3726ded6da32d1f6318c6
Waiting for container HtlBCDev600 to be ready
Initializing...
Starting Container
Hostname is HtlBCDev600
PublicDnsName is HtlBCDev600
WARNING: Container starts with TimeZone = Hora estándar GMT, which is not recognized in the list of TimeZones.
Using NavUserPassword Authentication
Starting Local SQL Server
Starting Internet Information Server
Creating Self Signed Certificate
Self Signed Certificate Thumbprint 3451D16A066CCD189672D7130A1AB1169DF0F1CA
Modifying Service Tier Config File with Instance Specific Settings
Starting Service Tier
Creating DotNetCore Web Server Instance
Enabling Financials User Experience
Creating http download site
Creating Windows user Noray
Setting SA Password and enabling SA
Creating Noray as SQL User and add to sysadmin
Creating SUPER user
Assign Premium plan for NORAY
Container IP Address: 172.29.242.3
Container Hostname : HtlBCDev600
Container Dns Name : HtlBCDev600
Web Client : http://HtlBCDev600/NAV/
Dev. Server : http://HtlBCDev600
Dev. ServerInstance : NAV
Files:
htlbcdev600/al-2.0.48254.vsix
Initialization took 128 seconds
Ready for connections!
Reading CustomSettings.config from HtlBCDev600
Creating Desktop Shortcuts for HtlBCDev600
Nav container HtlBCDev600 successfully created
Downloading C:\Users\JOSMAN~1\AppData\Local\Temp\CreateTestUsers.fob
Copy C:\Users\JOSMAN~1\AppData\Local\Temp\CreateTestUsers.fob to container HtlBCDev600 (c:\run\CreateTestUsers.fob)
Importing Objects from c:\run\CreateTestUsers.fob (container path)
Objects successfully imported
This is the launc.json configuration....
{
"version": "0.2.0",
"configurations": [
{
"name": "HtlBCDev600",
"type": "al",
"request": "launch",
"startupObjectId": 22,
"server": "http://HtlBCDev600",
"serverInstance": "NAV",
"authentication": "UserPassword",
"breakOnError": true,
"breakOnRecordWrite": false
}
]
}
And this is the app.json...
{
"id": "cd872e73-6e13-4ccb-80b5-6b0cb9cd834a",
"name": "Noray HTL",
"publisher": "Noray Software",
"brief": "",
"description": "",
"version": "6.0.0.0",
"privacyStatement": "",
"EULA": "",
"help": "",
"url": "",
"logo": "NoraySoftwareLogo.png",
"capabilities": [],
"dependencies": [],
"screenshots": [],
"platform": "13.0.0.0",
"application": "13.0.0.0",
"idRange": {"from": 7074165, "to": 7184510 },
"runtime": "2.0",
"target": "Extension",
"features": [ "TranslationFile" ]
}
What i'm doing wrong?
Thanks in advance...