You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2024. It is now read-only.
I have a main folder that contains multiple folders containing Arduino projects. When I open the main folder with VSCode and then try to upload a sketch to the board, the .vscode folder containing board info and port info is automatically created at the top of the main folder which I don't want because I would like to have a separate .vscode folder for each arduino project subfolder.
Is it possible to choose that the .vscode folder is created in the same folder that contains the .ino main sketch? And not at the top of the workspace?
Thanks
The text was updated successfully, but these errors were encountered:
@czgtest As you have mentioned each folder can have separate vscode folder. Opening only a single folder in the work-space solves the issue. (Thanks for your suggestion)
However the downside of this approach are -
1. Every-time you update the include path in c_cpp_properties.json file (to get rid of green squiggle lines) in the vscode folder, only that particular file (c_cpp_properties.json) is updated which is in the current workspace folder. (I want to have a common c_cpp_properties.json file for all of my projects so that I do not have to add the include path for cpp intellisence for each of the project folder). 2. If you have opened more than one folder in the workspace, each containing its own vscode. Then during verification and uploading the setting are taken from the vscode folder of the topmost folder in the workspace, instead of the current folder whose ino file you have opened.
I hope the asked feature request may come shortly in future.
I have a main folder that contains multiple folders containing Arduino projects. When I open the main folder with VSCode and then try to upload a sketch to the board, the .vscode folder containing board info and port info is automatically created at the top of the main folder which I don't want because I would like to have a separate .vscode folder for each arduino project subfolder.
Is it possible to choose that the .vscode folder is created in the same folder that contains the .ino main sketch? And not at the top of the workspace?
Thanks
The text was updated successfully, but these errors were encountered: