From 7cf1ddda8ce243b057358d62595073aa6677a75b Mon Sep 17 00:00:00 2001 From: Jeremy Friesen Date: Fri, 22 Feb 2019 19:31:57 -0800 Subject: [PATCH] Removed .vscode folder for now --- .gitignore | 3 ++- .vscode/launch.json | 28 ---------------------------- .vscode/tasks.json | 15 --------------- 3 files changed, 2 insertions(+), 44 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index 9a08929ca..91816bdc9 100644 --- a/.gitignore +++ b/.gitignore @@ -182,4 +182,5 @@ FakesAssemblies/ # Nuget 3.0 Files *.lock.json *.nuget.props -*.nuget.targets \ No newline at end of file +*.nuget.targets +.vscode diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 9667b83a8..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - // Use IntelliSense to find out which attributes exist for C# debugging - // Use hover for the description of the existing attributes - // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md - "version": "0.2.0", - "configurations": [ - { - "name": "LiteDB.Shell", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build shell", - // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/LiteDB.Shell/bin/Debug/netcoreapp2.0/LiteDB.Shell.dll", - "args": [], - "cwd": "${workspaceFolder}/LiteDB.Shell", - // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window - "console": "integratedTerminal", - "stopAtEntry": false, - "internalConsoleOptions": "openOnSessionStart" - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach", - "processId": "${command:pickProcess}" - } - ,] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index f173cafec..000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/LiteDB/LiteDB.csproj" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file