Skip to content

Helper for creating 1C:Enterprise 8 add-ins with Native API technology

License

Notifications You must be signed in to change notification settings

medigor/addin1c

Repository files navigation

addin1c

Helper for creating 1C:Enterprise 8 add-ins with Native API technology

References:

See example:

Debugging in Visual Studio Code

Create a .vscode/launch.json file:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug 1С",
            "program": "path/to/1cv8c",
            "args": [
                "/IBName",
                "Test1"
            ],
            "cwd": "${workspaceFolder}",
            "preLaunchTask": "rust: cargo build",
            "env": {"DISPLAY": ":1"}, // only for Linux
        }
    ]
}