Skip to content

Commit 207902d

Browse files
committed
2 parents d841759 + 7e93b66 commit 207902d

11 files changed

Lines changed: 13251 additions & 34 deletions

File tree

.vscode/launch.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": ".NET Core Launch (console)",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build",
9+
"program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>",
10+
"args": [],
11+
"cwd": "${workspaceRoot}",
12+
"stopAtEntry": false,
13+
"externalConsole": false
14+
},
15+
{
16+
"name": ".NET Core Launch (web)",
17+
"type": "coreclr",
18+
"request": "launch",
19+
"preLaunchTask": "build",
20+
"program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>",
21+
"args": [],
22+
"cwd": "${workspaceRoot}",
23+
"stopAtEntry": false,
24+
"launchBrowser": {
25+
"enabled": true,
26+
"args": "${auto-detect-url}",
27+
"windows": {
28+
"command": "cmd.exe",
29+
"args": "/C start ${auto-detect-url}"
30+
},
31+
"osx": {
32+
"command": "open"
33+
},
34+
"linux": {
35+
"command": "xdg-open"
36+
}
37+
},
38+
"env": {
39+
"ASPNETCORE_ENVIRONMENT": "Development"
40+
},
41+
"sourceFileMap": {
42+
"/Views": "${workspaceRoot}/Views"
43+
}
44+
},
45+
{
46+
"name": ".NET Core Attach",
47+
"type": "coreclr",
48+
"request": "attach",
49+
"processId": "${command.pickProcess}"
50+
}
51+
]
52+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": "4.0.0-*",
3+
"buildOptions": {
4+
"debugType": "portable"
5+
},
6+
"dependencies": {
7+
"NETStandard.Library": "1.5.0-rc2-24027",
8+
"System.Net.Http":"4.1.0",
9+
"Newtonsoft.Json": "9.0.1",
10+
"Microsoft.CSharp": "4.3.0",
11+
"System.Dynamic.Runtime": "4.3.0"
12+
},
13+
"frameworks": {
14+
"netstandard1.6": {
15+
"dependencies": {
16+
"NETStandard.Library": "1.5.0-rc2-24027"
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)