{ "version": "2.0.0", "tasks": [ { "label": "User Secrets Init", "command": "dotnet", "type": "process", "args": [ "user-secrets", "-p", "${workspaceFolder}/MesaFabApproval.API.csproj", "init" ], "problemMatcher": "$msCompile" }, { "label": "User Secrets Set", "command": "dotnet", "type": "process", "args": [ "user-secrets", "-p", "${workspaceFolder}/MesaFabApproval.API.csproj", "set", "_UserSecretsId", "0b98e1f2-95ed-4edd-8149-58cce51ca059" ], "problemMatcher": "$msCompile" }, { "label": "Format", "command": "dotnet", "type": "process", "args": [ "format", "--report", ".vscode", "--verbosity", "detailed", "--severity", "warn" ], "problemMatcher": "$msCompile" }, { "label": "Format-Whitespaces", "command": "dotnet", "type": "process", "args": [ "format", "whitespace" ], "problemMatcher": "$msCompile" }, { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/MesaFabApproval.API.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "testDebug", "command": "dotnet", "type": "process", "args": [ "test", "${workspaceFolder}/MesaFabApproval.API.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "testRelease", "command": "dotnet", "type": "process", "args": [ "test", "${workspaceFolder}/MesaFabApproval.API.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary", "-c", "Release" ], "problemMatcher": "$msCompile" }, { "label": "publish", "command": "dotnet", "type": "process", "args": [ "publish", "${workspaceFolder}/MesaFabApproval.API.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "watch", "command": "dotnet", "type": "process", "args": [ "watch", "run", "--project", "${workspaceFolder}/MesaFabApproval.API.csproj" ], "problemMatcher": "$msCompile" }, { "label": "Publish AOT", "command": "dotnet", "type": "process", "args": [ "publish", "-r", "win-x64", "-c", "Release", "-p:PublishAot=true", "${workspaceFolder}/MesaFabApproval.API.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" } ] }