Skip to content

Commit

Permalink
added bootstrap to package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Macneil committed Apr 18, 2017
1 parent ddef580 commit 18064ce
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,42 @@
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}\\src\\dotnetGigs\\bin\\Debug\\netcoreapp1.1\\dotnetGigs.dll",
"args": [],
"cwd": "${workspaceRoot}\\src\\dotnetGigs",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart",
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceRoot}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
16 changes: 16 additions & 0 deletions .vscode/tasks.json
@@ -0,0 +1,16 @@
{
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"args": [
"${workspaceRoot}\\src\\dotnetGigs\\dotnetGigs.csproj"
],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}
1 change: 1 addition & 0 deletions src/dotnetGigs/package.json
Expand Up @@ -20,6 +20,7 @@
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"bootstrap": "^4.0.0-alpha.6",
"core-js": "^2.4.1",
"rxjs": "^5.1.0",
"zone.js": "^0.8.4"
Expand Down

0 comments on commit 18064ce

Please sign in to comment.