This commit is contained in:
Tommy Parnell
2017-12-07 11:11:27 -05:00
parent cf2caa47b3
commit d58c49b1d5
4 changed files with 40 additions and 22 deletions

9
.vscode/launch.json vendored
View File

@@ -1,4 +1,7 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
@@ -6,9 +9,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}\\bin\\Debug\\netcoreapp1.1\\aka.terribledev.io.dll",
"program": "${workspaceFolder}/bin/Debug/netcoreapp2.0/aka.terribledev.io.dll",
"args": [],
"cwd": "${workspaceRoot}",
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart",
"launchBrowser": {
@@ -29,7 +32,7 @@
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceRoot}/Views"
"/Views": "${workspaceFolder}/Views"
}
},
{

11
.vscode/tasks.json vendored
View File

@@ -1,15 +1,14 @@
{
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"version": "2.0.0",
"tasks": [
{
"taskName": "build",
"command": "dotnet",
"type": "process",
"args": [
"${workspaceRoot}\\aka.terribledev.io.csproj"
"build",
"${workspaceFolder}/aka.terribledev.io.csproj"
],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]