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