Browse Source

Add VSCode launch config.

null-coalescing-assignment
Daniel Grunwald 4 months ago
parent
commit
32cb515f9a
  1. 24
      .vscode/launch.json
  2. 7
      .vscode/settings.json
  3. 28
      .vscode/tasks.json

24
.vscode/launch.json vendored

@ -0,0 +1,24 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ILSpy",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/ILSpy/bin/Debug/net10.0-windows/ILSpy.exe",
"args": ["--newinstance"],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}

7
.vscode/settings.json vendored

@ -0,0 +1,7 @@
{
"dotnet-test-explorer.testProjectPath": "*.Tests/*Tests.csproj",
"files.exclude": {
"ILSpy-tests/**": true
},
"dotnet.defaultSolution": "ILSpy.sln",
}

28
.vscode/tasks.json vendored

@ -0,0 +1,28 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "dotnet",
"args": [
"build",
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true",
"/t:build",
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
"/consoleloggerparameters:NoSummary",
"ILSpy/ILSpy.csproj"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
}
]
}
Loading…
Cancel
Save