#addin #native-api #1c-enterpirse

addin1c

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

7 releases (4 breaking)

new 0.5.0 Nov 11, 2024
0.4.1 Oct 24, 2024
0.4.0 Dec 26, 2023
0.3.0 Dec 24, 2023
0.1.1 Dec 14, 2023

#1 in #addin

Download history 60/week @ 2024-07-28 9/week @ 2024-09-22 4/week @ 2024-09-29 16/week @ 2024-10-13 140/week @ 2024-10-20 33/week @ 2024-10-27 16/week @ 2024-11-03 128/week @ 2024-11-10

322 downloads per month

MIT license

45KB
1K SLoC

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
        }
    ]
}

Dependencies

~49–350KB