-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathESP-MKB.code-workspace
More file actions
47 lines (44 loc) · 1.13 KB
/
Copy pathESP-MKB.code-workspace
File metadata and controls
47 lines (44 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"folders": [
{
"name": "ESP-MKB Firmware",
"path": "firmware"
},
{
"name": "Windows App",
"path": "app/win"
},
{
"name": "ESP-MKB",
"path": "."
}
],
"settings": {
// ESP-IDF Settings
"idf.projectDirectoryPath": "${workspaceFolder: ESP32 Firmware}",
// C# Settings for Windows App
"dotnet.defaultSolution": "${workspaceFolder: Windows App}",
// File exclusions for performance
"files.exclude": {
"**/build": true,
"**/bin": true,
"**/obj": true,
"**/.vscode": false
},
// Search exclusions
"search.exclude": {
"**/build": true,
"**/bin": true,
"**/obj": true,
"**/managed_components": true
}
},
"extensions": {
"recommendations": [
"espressif.esp-idf-extension",
"ms-vscode.cpptools",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit"
]
}
}