Crates.io | addin1c |
lib.rs | addin1c |
version | 0.4.1 |
source | src |
created_at | 2023-12-14 18:29:42.389106 |
updated_at | 2024-10-24 11:36:01.004564 |
description | Helper for creating 1C:Enterpirse 8 add-ins with Native API technology |
homepage | https://github.com/medigor/addin1c |
repository | https://github.com/medigor/addin1c |
max_upload_size | |
id | 1069845 |
size | 41,185 |
Helper for creating 1C:Enterprise 8 add-ins with Native API technology
References:
See example:
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
}
]
}