##// END OF EJS Templates
addded ServiceHost tests, updated project targets
addded ServiceHost tests, updated project targets

File last commit:

r299:d54174bbd6c4 tip default
r299:d54174bbd6c4 tip default
Show More
tasks.json
36 lines | 871 B | application/json | JsonLexer
cin
refactoring, moving to dotnercore, simplifying promises
r240 {
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
cin
addded ServiceHost tests, updated project targets
r299 "version": "2.0.0",
cin
Working on Unity xml configuration
r267 "command": "dotnet",
cin
refactoring, moving to dotnercore, simplifying promises
r240 "args": [
],
"tasks": [
{
cin
addded ServiceHost tests, updated project targets
r299 "label": "build",
"command": "dotnet",
"args": [
"build",
"/p:Configuration=Debug"
],
cin
refactoring, moving to dotnercore, simplifying promises
r240 "problemMatcher": "$msCompile",
cin
addded ServiceHost tests, updated project targets
r299 "group": "build"
cin
refactoring, moving to dotnercore, simplifying promises
r240 },
{
cin
addded ServiceHost tests, updated project targets
r299 "label": "clean",
"command": "dotnet",
"args": [
"clean"
],
cin
Working on Unity xml configuration
r267 "problemMatcher": "$msCompile"
cin
refactoring, moving to dotnercore, simplifying promises
r240 },
{
cin
addded ServiceHost tests, updated project targets
r299 "label": "test",
"command": "dotnet",
"args": [
"test"
],
"problemMatcher": "$msCompile",
"group": "test"
cin
refactoring, moving to dotnercore, simplifying promises
r240 }
]
}