diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ce8084148b..ccdbf4d172 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -63,6 +63,42 @@ }, // Use the standard MS compiler pattern to detect errors, warnings and infos "problemMatcher": "$msCompile" + }, + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj" + ], + "problemMatcher": "$msCompile" } ] } \ No newline at end of file diff --git a/build/Packages.props b/build/Packages.props index 4fe1d60d5f..0a2ad0c390 100644 --- a/build/Packages.props +++ b/build/Packages.props @@ -13,8 +13,8 @@ - - + +