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