We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fba288 commit 3494c5fCopy full SHA for 3494c5f
.vscode/launch.json
@@ -0,0 +1,19 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": ".NET Core Launch (console)",
6
+ "type": "coreclr",
7
+ "request": "launch",
8
+ "program": "${workspaceRoot}/tools/Cake.CoreCLR/Cake.dll",
9
+ "args": [
10
+ "${workspaceRoot}/build.cake",
11
+ "--debug",
12
+ "--verbosity=diagnostic"
13
+ ],
14
+ "cwd": "${workspaceRoot}",
15
+ "stopAtEntry": true,
16
+ "externalConsole": false
17
+ }
18
+ ]
19
+}
tools/packages.config
@@ -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 commit comments