remove vscode settings (#933)

Co-authored-by: Cijo Thomas <cithomas@microsoft.com>
This commit is contained in:
Reiley Yang 2020-07-27 08:57:02 -07:00 committed by GitHub
parent 871d56cd66
commit 4f3e18704e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 78 deletions

View File

@ -1,5 +0,0 @@
{
"recommendations": [
"ms-dotnettools.csharp"
]
}

42
.vscode/launch.json vendored
View File

@ -1,42 +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": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/test/OpenTelemetry.Adapter.Dependencies.Tests/bin/Debug/netcoreapp2.1/OpenTelemetry.Adapter.Dependencies.Tests.dll",
"args": [],
"cwd": "${workspaceFolder}/test/OpenTelemetry.Adapter.Dependencies.Tests",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
"console": "internalConsole",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Jaeger Exporter Tests (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/test/OpenTelemetry.Exporter.Jaeger.Tests/bin/Debug/netcoreapp2.2/OpenTelemetry.Exporter.Jaeger.Tests.dll",
"args": [],
"cwd": "${workspaceFolder}/test/OpenTelemetry.Exporter.Jaeger.Tests",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
"console": "internalConsole",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
,]
}

View File

@ -1,9 +0,0 @@
{
"rewrap.wrappingColumn": 79,
"files.associations": {
".vsts/*.yml": "azure-pipelines"
},
"files.exclude": {
"**/obj": true
},
}

22
.vscode/tasks.json vendored
View File

@ -1,22 +0,0 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "shell",
"group": "build",
"presentation": {
"reveal": "silent"
},
"args": [
"build",
"${workspaceFolder}/OpenTelemetry.sln",
"/property:GenerateFullPaths=true"
],
"problemMatcher": "$msCompile"
}
]
}