| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build - Ix.NET.sln",
- "command": "dotnet",
- "args": [
- "build",
- "${workspaceFolder}/Ix.NET.sln",
- "/property:GenerateFullPaths=true"
- ],
- "type": "shell",
- "group": "build",
- "presentation": {
- "reveal": "silent"
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build - Ix.Async.NET.sln",
- "command": "dotnet",
- "args": [
- "build",
- "${workspaceFolder}/Ix.NET.sln",
- "/property:GenerateFullPaths=true"
- ],
- "type": "shell",
- "group": "build",
- "presentation": {
- "reveal": "silent"
- },
- "problemMatcher": "$msCompile"
- }
- ]
- }
|