Skip to content

03 OpenEdge

Gilles Querret edited this page Sep 11, 2024 · 4 revisions

ℹ️ OpenEdge is installed at C:\Progress\OpenEdge-12.8.

  1. Open a command prompt, change the working directory to C:\Workshop\Chapter3, and execute code . (ensure you include the . after code).

    Command Prompt

  2. Open the Extensions tab in VS Code and search for "ABL extensions".

    Extensions Tab

  3. Select the extension from "Riverside Software" and install it.

    Riverside Software Extension

  4. After installation, you'll receive a notification to configure the OpenEdge runtime paths.

    Runtime Paths Notification

  5. Open the VS Code settings, navigate to the ABL configuration section, and click on the "Edit in settings.json" link for ABL runtimes.

    Edit in settings.json

  6. Add the following configuration to the settings.json file:

    "abl.configuration.runtimes": [
      {
        "name": "12.8",
        "path": "C:\\Progress\\OpenEdge-12.8"
      }
    ]

Note: Although there is content assist for version numbers, you can specify any value here. This value can then be reused in any project configuration file.


Next chapter

Clone this wiki locally