#add-in #native-api #technology #1c-enterprise

addin1c

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

9 releases (breaking)

new 0.7.0 May 17, 2025
0.6.0 May 4, 2025
0.5.0 Nov 11, 2024
0.4.1 Oct 24, 2024
0.1.1 Dec 14, 2023

#2 in #technology

Download history 10/week @ 2025-02-26 18/week @ 2025-04-02 2/week @ 2025-04-16 120/week @ 2025-04-30 27/week @ 2025-05-07

149 downloads per month

MIT license

49KB
1.5K 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

~48–360KB