Skip to content

Commit 0005942

Browse files
committed
Update .vscode
1 parent 3302df3 commit 0005942

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

src/NetCoreBBS/.vscode/launch.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "build",
9-
"program": "${workspaceRoot}/bin/Debug/netcoreapp1.0/NetCoreBBS.dll",
9+
"program": "${workspaceRoot}\\bin\\Debug\\netcoreapp1.0\\NetCoreBBS.dll",
1010
"args": [],
1111
"cwd": "${workspaceRoot}",
1212
"stopAtEntry": false,
@@ -26,13 +26,16 @@
2626
},
2727
"env": {
2828
"ASPNETCORE_ENVIRONMENT": "Development"
29+
},
30+
"sourceFileMap": {
31+
"/Views": "${workspaceRoot}/Views"
2932
}
3033
},
3134
{
3235
"name": ".NET Core Attach",
3336
"type": "coreclr",
3437
"request": "attach",
35-
"processId": 0
38+
"processId": "${command.pickProcess}"
3639
}
3740
]
3841
}

src/NetCoreBBS/.vscode/tasks.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"tasks": [
77
{
88
"taskName": "build",
9-
"args": [],
9+
"args": [
10+
"${workspaceRoot}\\project.json"
11+
],
1012
"isBuildCommand": true,
1113
"problemMatcher": "$msCompile"
1214
}

src/NetCoreBBS/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"Microsoft.Extensions.Logging.Console": "1.0.0",
2020
"Microsoft.EntityFrameworkCore.Sqlite": "1.0.0",
2121
"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
22-
"NLog.Extensions.Logging": "1.0.0-rtm-alpha2",
22+
"NLog.Extensions.Logging": "1.0.0-rtm-alpha4",
2323
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
2424
"Microsoft.AspNetCore.Authorization": "1.0.0",
2525
"Microsoft.Extensions.Caching.Memory": "1.0.0",
@@ -67,6 +67,7 @@
6767
},
6868

6969
"buildOptions": {
70+
"debugType": "portable",
7071
"emitEntryPoint": true,
7172
"preserveCompilationContext": true
7273
},

0 commit comments

Comments
 (0)