Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Koritzinsky <jkoritzinsky@gmail.com>2017-07-21 22:53:46 +0300
committerJan Kotas <jkotas@microsoft.com>2017-07-21 22:53:46 +0300
commit620db716ecb0842a1172fc60108a4fe6cd4b6861 (patch)
tree0cfbba1ae4b228af3a259f24171d23f7ba6e66e7 /.vscode
parent5366dc13818516ea0355826fab0f09061254102c (diff)
Updated paths to ILC in docs and fixed .vscode/launch.json (#4212)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json9
1 files changed, 6 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 46d40ef7b..e5ac2c52e 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -6,11 +6,14 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
+ "windows": {
+ "program": "${workspaceRoot}/bin/Windows_NT.x64.Debug/tools/ilc.dll"
+ },
"osx": {
- "program": "${workspaceRoot}/bin/Product/OSX.x64.Debug/packaging/publish1/ilc.dll"
+ "program": "${workspaceRoot}/bin/OSX.x64.Debug/tools/ilc.dll"
},
"linux": {
- "program": "${workspaceRoot}/bin/Product/Linux.x64.Debug/packaging/publish1/ilc.dll"
+ "program": "${workspaceRoot}/bin/Linux.x64.Debug/tools/ilc.dll"
},
"args": [],
"cwd": "${workspaceRoot}",
@@ -21,7 +24,7 @@
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
- "processId": "${command.pickProcess}"
+ "processId": "${command:pickProcess}"
}
]
} \ No newline at end of file