4
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
5
"version" : " 0.2.0" ,
6
6
"configurations" : [
7
+ // CLIENT CONFIGS
7
8
{
8
9
"name" : " Client" ,
9
10
"type" : " coreclr" ,
14
15
"stopAtEntry" : false
15
16
},
16
17
{
17
- "name" : " Client (Compatibility renderer)" ,
18
+ "name" : " Client (Tools)" ,
19
+ "type" : " coreclr" ,
20
+ "request" : " launch" ,
21
+ "preLaunchTask" : " build (Tools)" ,
22
+ "program" : " ${workspaceFolder}/bin/Content.Client/Content.Client.dll" ,
23
+ "args" : [],
24
+ "console" : " internalConsole" ,
25
+ "stopAtEntry" : false
26
+ },
27
+ {
28
+ "name" : " Client (Release)" ,
29
+ "type" : " coreclr" ,
30
+ "request" : " launch" ,
31
+ "preLaunchTask" : " build (Release)" ,
32
+ "program" : " ${workspaceFolder}/bin/Content.Client/Content.Client.dll" ,
33
+ "args" : [],
34
+ "console" : " internalConsole" ,
35
+ "stopAtEntry" : false
36
+ },
37
+ // COMPATABILITY RENDERERS
38
+ {
39
+ "name" : " Client (Compatibility Renderer)" ,
18
40
"type" : " coreclr" ,
19
41
"request" : " launch" ,
20
42
"program" : " ${workspaceFolder}/bin/Content.Client/Content.Client.dll" ,
21
43
"args" : " --cvar display.compat=true" ,
22
44
"console" : " internalConsole" ,
23
45
"stopAtEntry" : false
24
46
},
47
+ {
48
+ "name" : " Client (Tools) - (Compatability Renderer)" ,
49
+ "type" : " coreclr" ,
50
+ "request" : " launch" ,
51
+ "preLaunchTask" : " build (Tools)" ,
52
+ "program" : " ${workspaceFolder}/bin/Content.Client/Content.Client.dll" ,
53
+ "args" : [" --cvar display.compat=true" ],
54
+ "console" : " internalConsole" ,
55
+ "stopAtEntry" : false
56
+ },
57
+ {
58
+ "name" : " Client (Release) - (Compatability Renderer)" ,
59
+ "type" : " coreclr" ,
60
+ "request" : " launch" ,
61
+ "preLaunchTask" : " build (Release)" ,
62
+ "program" : " ${workspaceFolder}/bin/Debug/Content.Client/Content.Client.dll" ,
63
+ "args" : [" --cvar display.compat=true" ],
64
+ "console" : " internalConsole" ,
65
+ "stopAtEntry" : false
66
+ },
67
+ // SERVER CONFIGS
25
68
{
26
69
"name" : " Server" ,
27
70
"type" : " coreclr" ,
31
74
"console" : " integratedTerminal" ,
32
75
"stopAtEntry" : false
33
76
},
77
+ {
78
+ "name" : " Server (Tools)" ,
79
+ "type" : " coreclr" ,
80
+ "request" : " launch" ,
81
+ "preLaunchTask" : " build (Tools)" ,
82
+ "program" : " ${workspaceFolder}/bin/Content.Server/Content.Server.dll" ,
83
+ "args" : [],
84
+ "console" : " internalConsole" ,
85
+ "stopAtEntry" : false
86
+ },
87
+ {
88
+ "name" : " Server (Release)" ,
89
+ "type" : " coreclr" ,
90
+ "request" : " launch" ,
91
+ "preLaunchTask" : " build (Release)" ,
92
+ "program" : " ${workspaceFolder}/bin/Content.Server/Content.Server.dll" ,
93
+ "args" : [],
94
+ "console" : " internalConsole" ,
95
+ "stopAtEntry" : false
96
+ },
97
+ // LINTER
34
98
{
35
99
"name" : " YAML Linter" ,
36
100
"type" : " coreclr" ,
50
114
" Client"
51
115
],
52
116
"preLaunchTask" : " build"
117
+ },
118
+ {
119
+ "name" : " Server/Client (Tools)" ,
120
+ "configurations" : [
121
+ " Server (Tools)" ,
122
+ " Client (Tools)"
123
+ ],
124
+ "preLaunchTask" : " build (Tools)"
125
+ },
126
+ {
127
+ "name" : " Server/Client (Release)" ,
128
+ "configurations" : [
129
+ " Server (Release)" ,
130
+ " Client (Release)"
131
+ ],
132
+ "preLaunchTask" : " build (Release)"
53
133
}
54
134
]
55
- }
135
+ }
0 commit comments