From 16128c676464a2962d1233bfb00abb5cbe2b0ca9 Mon Sep 17 00:00:00 2001 From: Martin521 <29605222+Martin521@users.noreply.github.com> Date: Sat, 7 Oct 2023 14:44:26 +0000 Subject: [PATCH] fix vs code build tasks --- .vscode/tasks.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 6a15d101828..7ec6813a99c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -20,14 +20,16 @@ "type": "shell", "args": [ "build", - "-c Debug", + "-c", + "Debug", "FSharp.Compiler.Service.sln" ], "windows": { "command": "dotnet", "args": [ "build", - "-c Debug", + "-c", + "Debug", "FSharp.Compiler.Service.sln" ], }, @@ -40,14 +42,16 @@ "type": "shell", "args": [ "build", - "-c Release", + "-c", + "Release", "FSharp.Compiler.Service.sln" ], "windows": { "command": "dotnet", "args": [ "build", - "-c Release", + "-c", + "Release", "FSharp.Compiler.Service.sln" ], },