6 releases (3 breaking)
new 0.4.1 | Oct 24, 2024 |
---|---|
0.4.0 | Dec 26, 2023 |
0.3.0 | Dec 24, 2023 |
0.2.0 | Dec 23, 2023 |
0.1.1 | Dec 14, 2023 |
105 downloads per month
42KB
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
~79KB