Revision a9fbec3f84669d8a8e54ea67b2733dbe2e7d7cf3 authored by Christophe Maudoux on 07 March 2019, 09:39:08 UTC, committed by Christophe Maudoux on 07 March 2019, 09:39:08 UTC
1 parent 07635e7
Raw File
launch.json
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "perl",
            "request": "launch",
            "name": "Perl-Debug local",
            "program": "${workspaceFolder}/${relativeFile}",
            "exec": "perl",
            "execArgs": [],
            "root": "${workspaceRoot}/",
            "inc": ["./lemonldap-ng-common/blib/lib","./lemonldap-ng-handler/blib/lib","./lemonldap-ng-portal/blib/lib","./lemonldap-ng-manager/blib/lib"],
            "args": [],
            "env": {},
            "stopOnEntry": true
        },
        {
            "type": "perl",
            "request": "launch",
            "name": "Perl-Debug remote",
            "program": "${workspaceFolder}/${relativeFile}",
            "root": "${workspaceRoot}/",
            "stopOnEntry": true,
            "port": 5000
        }
    ]
}
back to top