-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.code-workspace
More file actions
95 lines (95 loc) · 1.82 KB
/
Core.code-workspace
File metadata and controls
95 lines (95 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"folders": [
{
"path": "."
},
{
"path": "Utility"
},
{
"path": "Tests"
},
{
"path": "Debugger"
},
{
"path": "Analysis"
},
{
"path": "../LanguageServer"
},
{
"path": "../VSCodeExtension"
},
{
"path": "../Core.wiki"
},
{
"path": "../SpeedTests"
},
{
"path": "../DebugServer"
}
],
"settings": {
"dotnet.backgroundAnalysis.compilerDiagnosticsScope": "fullSolution",
"csharp.inlayHints.enableInlayHintsForImplicitObjectCreation": false,
"csharp.inlayHints.enableInlayHintsForLambdaParameterTypes": true,
"dotnet.server.useOmnisharp": false,
"csharp.debug.console": "externalTerminal",
"files.exclude": {
"Tests": true,
"Debugger": true,
"Analysis": true,
"Unity": true,
"Utility": true,
"**/*.meta": true,
},
"dotnet.server.startTimeout": 60000,
"files.associations": {
"*.trx": "xml"
},
"search.exclude": {
"TestResults/*": true,
"Unity/**": true,
"**/bin/**": true,
"**/obj/**": true,
},
"csharp.debug.justMyCode": true,
"csharp.debug.enableStepFiltering": true,
"javascript.format.semicolons": "remove",
"typescript.format.semicolons": "remove"
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet build ./Utility/Utility.csproj",
"type": "shell",
"group": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder:Core}/Utility/bin/Debug/net11.0/linux-x64/bblang",
"args": [],
"cwd": "${workspaceFolder:Core}",
"stopAtEntry": false,
"console": "internalConsole",
"justMyCode": false,
}
]
},
}