summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-09-15 15:33:57 -0500
committerHombreLaser <sebastian-440@live.com>2022-09-15 15:33:57 -0500
commit2ef25a3fad449f8a05491db4a46fc3990c27cf15 (patch)
treef9dc71c6381904c3a9f3f27e3277205eb91e0405 /.vscode/tasks.json
parent6160528526285efa2b5d78672d5f713bb8eece88 (diff)
Limpiar área de trabajo
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..d331c74
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,41 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "build",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "build",
+ "${workspaceFolder}/LibraryAPI.csproj",
+ "/property:GenerateFullPaths=true",
+ "/consoleloggerparameters:NoSummary"
+ ],
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "publish",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "publish",
+ "${workspaceFolder}/LibraryAPI.csproj",
+ "/property:GenerateFullPaths=true",
+ "/consoleloggerparameters:NoSummary"
+ ],
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "watch",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "watch",
+ "run",
+ "--project",
+ "${workspaceFolder}/LibraryAPI.csproj"
+ ],
+ "problemMatcher": "$msCompile"
+ }
+ ]
+} \ No newline at end of file