-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added build debug to prelaunch task in tests
- Loading branch information
1 parent
466fcfc
commit 2017f1a
Showing
2 changed files
with
37 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "format codebase", | ||
"command": "dotnet", | ||
"args": [ | ||
"build", | ||
"-t", | ||
"Format" | ||
], | ||
"detail": "Format all source code using Fantomas", | ||
"type": "shell", | ||
"problemMatcher": [] | ||
} | ||
] | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "format codebase", | ||
"command": "dotnet", | ||
"args": ["build", "-t", "Format"], | ||
"detail": "Format all source code using Fantomas", | ||
"type": "shell", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "build debug", | ||
"type": "process", | ||
"command": "dotnet", | ||
"args": [ | ||
"build", | ||
"-c", | ||
"Debug", | ||
"${workspaceFolder}/FsAutoComplete.sln", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary" | ||
] | ||
} | ||
] | ||
} |