Skip to content

Workspace Settings

Soren Klemmensen edited this page Jun 12, 2017 · 2 revisions

Workspace settings (Located in <your workspace>/.vscode/settings.json):

{
    "dynamicsnav.zip": "<Location to the ZIP file from Microsoft>",
    "dynamicsnav.solutionName": "<Your solutionname>",
    "dynamicsnav.remotedbname": "<DB name on the remote SQL Server>",
    "dynamicsnav.solutionVersion": "<Version of your current solution>",
    "dynamicsnav.remotedbinstance": "<Remote SQL Server's computername>"
}

Please note that \ in JSON needs to be escaped. So C:\temp\license.flf becomes C:\\temp\\license.flf in your settings.

Also note that the ZIP file is the DVD ZIP file from Microsoft. It needs to contain the setup.exe in the root of the ZIP file.

An example workspace settings could look something like this:

{
    "dynamicsnav.zip": "C:\\temp\\NAV.10.0.16996.DK.DVD.zip",
    "dynamicsnav.solutionName": "EXAMPLE",
    "dynamicsnav.remotedbname": "EXAMPLE-SOLUTION",
    "dynamicsnav.solutionVersion": "1.0.0",
    "dynamicsnav.remotedbinstance": "HOSTNAME-SQLSERVER"
}

Clone this wiki locally