launch.json 1.0 KB

1234567891011121314151617181920212223242526
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. // 使用 IntelliSense 找出 C# 调试存在哪些属性
  6. // 将悬停用于现有属性的说明
  7. // 有关详细信息,请访问 https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
  8. "name": ".NET Core Launch (console)",
  9. "type": "coreclr",
  10. "request": "launch",
  11. "preLaunchTask": "build",
  12. // 如果已更改目标框架,请确保更新程序路径。
  13. "program": "${workspaceFolder}/DataMigration/bin/Debug/netcoreapp3.1/DataMigration.dll",
  14. "args": [],
  15. "cwd": "${workspaceFolder}/DataMigration",
  16. // 有关“控制台”字段的详细信息,请参阅 https://aka.ms/VSCode-CS-LaunchJson-Console
  17. "console": "internalConsole",
  18. "stopAtEntry": false
  19. },
  20. {
  21. "name": ".NET Core Attach",
  22. "type": "coreclr",
  23. "request": "attach"
  24. }
  25. ]
  26. }