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