addin1c

Crates.ioaddin1c
lib.rsaddin1c
version0.4.0
sourcesrc
created_at2023-12-14 18:29:42.389106
updated_at2023-12-26 18:19:14.723105
descriptionHelper for creating 1C:Enterpirse 8 add-ins with Native API technology
homepagehttps://github.com/medigor/addin1c
repositoryhttps://github.com/medigor/addin1c
max_upload_size
id1069845
size40,963
(medigor)

documentation

README

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
        }
    ]
}
Commit count: 27

cargo fmt