diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-12-14 09:53:10 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-12-14 09:53:10 +0300 |
commit | da94ed6d89ac2b933718419bbe42f2d913514231 (patch) | |
tree | 4c3f9ba7f5c54c564ee28b0e3c973c374f2499ac /.vscode/tasks.json |
Init commit
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..de9c113 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/RhSolutions.Api/RhSolutions.Api.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/RhSolutions.Api/RhSolutions.Api.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/RhSolutions.Api/RhSolutions.Api.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +}
\ No newline at end of file |