{ "version": "2.0.0", "tasks": [ { "label": "build-api", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/BimAI.API/BimAI.API.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "build-web", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/BimAI.UI.Web/BimAI.UI.Web.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "publish-api", "command": "dotnet", "type": "process", "args": [ "publish", "${workspaceFolder}/BimAI.API/BimAI.API.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "publish-web", "command": "dotnet", "type": "process", "args": [ "publish", "${workspaceFolder}/BimAI.UI.Web/BimAI.UI.Web.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "watch-api", "command": "dotnet", "type": "process", "args": [ "watch", "run", "--project", "${workspaceFolder}/BimAI.API/BimAI.API.csproj" ], "problemMatcher": "$msCompile" }, { "label": "watch-web", "command": "dotnet", "type": "process", "args": [ "watch", "run", "--project", "${workspaceFolder}/BimAI.UI.Web/BimAI.UI.Web.csproj" ], "problemMatcher": "$msCompile" } ] }