Difference between revisions of "Using Visual Studio Code for ARM Development – Workspace and Project(s)"
From EdWiki
m (→VSCode - Workspace and Project(s)) |
m (→See Also) |
||
Line 31: | Line 31: | ||
<big>You can download sample project from</big> [{{SERVER}}/emsys/vscode/vscode-tm4c-blinky.zip <big>here</big>] | <big>You can download sample project from</big> [{{SERVER}}/emsys/vscode/vscode-tm4c-blinky.zip <big>here</big>] | ||
− | === | + | === References === |
* [https://code.visualstudio.com/docs/editor/workspaces workspaces] | * [https://code.visualstudio.com/docs/editor/workspaces workspaces] | ||
* [https://code.visualstudio.com/docs/getstarted/settings User and Workspace Settings] | * [https://code.visualstudio.com/docs/getstarted/settings User and Workspace Settings] |
Latest revision as of 04:37, 9 April 2022
VSCode - Workspace and Project(s)
Similar to other IDEs, Visual Studio Code is using the concept of a ‘workspace’. In simple words, a workspace is a collection of Folders open in the IDE. See workspaces for more details. In the most simple case a workspace just contains a folder which is the folder for the project. So all what we need is to add a folder.
Use menu File > Add Folder to Workspace …
Browse to an existing new (empty) folder or simply create one from the dialog:
Add a new file: main.c
Implement the main function, then save it (CTRL+S)
Sample Project
You can download sample project from here