1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Build JsonKit",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "build",
- "/consoleloggerparameters:NoSummary",
- "./Topten.JsonKit/Topten.JsonKit.csproj"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always",
- "clear": true
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "Build JsonKit.Lite",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "build",
- "/consoleloggerparameters:NoSummary",
- "./Topten.JsonKit/Topten.JsonKit.Lite.csproj"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always",
- "clear": true
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "Build Tests",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "build",
- "/consoleloggerparameters:NoSummary",
- "./Topten.JsonKit.Test/Topten.JsonKit.Test.csproj"
- ],
- "group": "build",
- "presentation": {
- "reveal": "always",
- "clear": true
- },
- "problemMatcher": "$msCompile"
- }
- ]
- }
|