Description:
Tweak VSCode config.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r605:860601e84a8f -

@@ -23,12 +23,19
23 "name": "Attach LLDB to Running Process",
23 "name": "Attach LLDB to Running Process",
24 "pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
24 "pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
25 },
25 },
26
27 {
28 "type": "lldb",
29 "request": "attach",
30 "name": "Attach LLDB to Running Process",
31 "pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
32 },
26
33
27 {
34 {
28 "name": "Attach .NET Core to Running Process",
35 "name": "Attach .NET Core to Running Process",
29 "type": "coreclr",
36 "type": "coreclr",
30 "request": "attach",
37 "request": "attach",
31 "processId":"${command:pickMyProcess}"
38 "pid":"${command:pickMyProcess}"
32 }
39 }
33 ]
40 ]
34 }
41 }
@@ -137,7 +137,7
137 "command": "dotnet",
137 "command": "dotnet",
138 "args": [
138 "args": [
139 "build",
139 "build",
140 "./isometric-park-fna-core.sln",
140 "./isometric-park-fna/isometric-park-fna-core.csproj",
141 "-f",
141 "-f",
142 "netcoreapp3.1"
142 "netcoreapp3.1"
143 ],
143 ],
@@ -175,7 +175,7
175 "command": "dotnet",
175 "command": "dotnet",
176 "args": [
176 "args": [
177 "build",
177 "build",
178 "./isometric-park-fna-core.sln",
178 "./isometric-park-fna/isometric-park-fna-core.csproj",
179 "--configuration",
179 "--configuration",
180 "Release",
180 "Release",
181 "-f",
181 "-f",
@@ -124,6 +124,7
124
124
125
125
126
126
127 [STAThread]
127 private static void Main(string[] args)
128 private static void Main(string[] args)
128 {
129 {
129 #if NETCOREAPP
130 #if NETCOREAPP
You need to be logged in to leave comments. Login now