Skip to content

Commit

Permalink
(build) Added the ability to debug Cake Script
Browse files Browse the repository at this point in the history
  • Loading branch information
gep13 committed Nov 18, 2016
1 parent 8fba288 commit 3494c5f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"program": "${workspaceRoot}/tools/Cake.CoreCLR/Cake.dll",
"args": [
"${workspaceRoot}/build.cake",
"--debug",
"--verbosity=diagnostic"
],
"cwd": "${workspaceRoot}",
"stopAtEntry": true,
"externalConsole": false
}
]
}
5 changes: 5 additions & 0 deletions tools/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake" version="0.16.1" />
<package id="Cake.CoreCLR" version="0.16.1" />
</packages>

0 comments on commit 3494c5f

Please sign in to comment.