| 1234567891011121314151617181920212223242526 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build",
- "command": "dotnet",
- "type": "process",
- "args": ["build", "${workspaceFolder}/Admin.NET/Admin.NET.sln", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign"],
- "problemMatcher": "$msCompile"
- },
- {
- "label": "publish",
- "command": "dotnet",
- "type": "process",
- "args": ["publish", "${workspaceFolder}/Admin.NET/Admin.NET.sln", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign"],
- "problemMatcher": "$msCompile"
- },
- {
- "label": "watch",
- "command": "dotnet",
- "type": "process",
- "args": ["watch", "run", "--project", "${workspaceFolder}/Admin.NET/Admin.NET.sln"],
- "problemMatcher": "$msCompile"
- }
- ]
- }
|