From 13d02bb968b77f608a7f4c2c8d87cf40866b6196 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 14 Jan 2022 16:34:07 -0800 Subject: [PATCH 1/4] Migrate launch configurations to workspace --- .vscode/launch.json | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 8d993c480..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Full: Attach to Process", - "type": "clr", - "request": "attach", - "processId": "${command:pickProcess}" - }, - { - "name": ".NET Core: Attach to Process", - "type": "coreclr", - "request": "attach", - "processId": "${command:pickProcess}" - }, - { - "type": "PowerShell", - "request": "launch", - "name": "PowerShell Interactive Session", - "cwd": "" - } - ] -} From 73edd79c729dac9d4b4887de4cb8f363ccec0741 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 14 Jan 2022 16:39:07 -0800 Subject: [PATCH 2/4] Migrate extensions to workspace --- .vscode/extensions.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 5c97e719a..000000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "ms-dotnettools.csharp", - "ms-vscode.powershell", - "davidanson.vscode-markdownlint", - "editorconfig.editorconfig" - ] -} From c0a4c94250d259a6374e8c680f2108e32ffcdd80 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 14 Jan 2022 17:27:33 -0800 Subject: [PATCH 3/4] Migrate tasks to workspace --- .vscode/tasks.json | 79 ---------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 11867c523..000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "version": "2.0.0", - - "windows": { - "options": { - "shell": { - "executable": "powershell.exe", - "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command" ] - } - } - }, - "linux": { - "options": { - "shell": { - "executable": "/usr/bin/pwsh", - "args": [ "-NoProfile", "-Command" ] - } - } - }, - "osx": { - "options": { - "shell": { - "executable": "/usr/local/bin/pwsh", - "args": [ "-NoProfile", "-Command" ] - } - } - }, - - // Associate with test task runner - "tasks": [ - { - "label": "Clean", - "type": "shell", - "command": "Invoke-Build Clean", - "problemMatcher": ["$msCompile"] - }, - { - "label": "Build", - "type": "shell", - "command": "Invoke-Build Build", - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": ["$msCompile"] - }, - { - "label": "Build Release Configuration", - "type": "shell", - "command": "Invoke-Build Build -Configuration Release", - "group": "build", - "problemMatcher": ["$msCompile"] - }, - { - "label": "Test", - "type": "shell", - "command": "Invoke-Build Test", - "group": "test", - "problemMatcher": ["$msCompile"] - }, - { - "label": "Test Language Service", - "type": "shell", - "command": "Invoke-Build TestServer", - "group": "test", - "problemMatcher": ["$msCompile"] - }, - { - "label": "Test Host", - "type": "shell", - "command": "Invoke-Build TestHost", - "group": { - "kind": "test", - "isDefault": true - }, - "problemMatcher": ["$msCompile"] - } - ] -} \ No newline at end of file From 15b449c3db3afa77e9f614d30c169c1290828885 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 14 Jan 2022 17:46:32 -0800 Subject: [PATCH 4/4] Migrate settings to workspace --- .vscode/settings.json | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 33db77fd2..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -// Place your settings in this file to overwrite default and user settings. -{ - "editor.tabSize": 4, - "editor.insertSpaces": true, - "files.trimTrailingWhitespace": true, - "files.insertFinalNewline": true -}