X-Git-Url: https://fortfriendship.online/gitweb/gnargle.github.io.git/blobdiff_plain/764136b207221b618f4a111751633a00686aec55..d7a192ed0520e86077032d5b9d814077c542da4c:/.vscode/tasks.json?ds=sidebyside diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..2bcce95 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/RSSGen/RSSGen.sln", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary;ForceNoAlign" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/RSSGen/RSSGen.sln", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary;ForceNoAlign" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/RSSGen/RSSGen.sln" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file