-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathppt-dev.code-workspace
More file actions
60 lines (60 loc) · 1.37 KB
/
ppt-dev.code-workspace
File metadata and controls
60 lines (60 loc) · 1.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"folders": [
{
"name": "ppt-dev",
"path": "."
},
{
"name": "ppt-agentic",
"path": "repos/ppt-agentic"
},
{
"name": "microservice-epa",
"path": "repos/microservice-epa"
},
{
"name": "microservice-case-management",
"path": "repos/microservice-case-management"
},
// {
// "name": "microservice-profile",
// "path": "repos/microservice-profile"
// },
// {
// "name": "microservice-sam-gateway",
// "path": "repos/microservice-sam-gateway"
// },
// {
// "name": "ppt-common-csharp",
// "path": "repos/ppt-common-csharp"
// }
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/bin/**": true,
"**/obj/**": true,
"**/.devcache/**": true
},
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bin": true,
"**/obj": true,
"**/.devcache": true
},
"dotnet.defaultSolution": "disable"
},
"extensions": {
"recommendations": [
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-azuretools.vscode-docker",
"ms-vscode-remote.remote-containers",
"anthropics.claude-code"
]
}
}