Blame view

.vscode/launch.json 1.42 KB
8514f465   “wangming”   feat: 优化业务逻辑和功能完善
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  {
      "version": "0.2.0",
      "configurations": [
          {
              // 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
              "name": ".NET Core Launch (web)",
              "type": "coreclr",
              "request": "launch",
              "preLaunchTask": "build",
              // If you have changed target frameworks, make sure to update the program path.
              "program": "${workspaceFolder}/netcore/src/Application/NCC.API/bin/Debug/net6.0/NCC.API.dll",
              "args": [],
              "cwd": "${workspaceFolder}/netcore/src/Application/NCC.API",
              "stopAtEntry": false,
              // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
              "serverReadyAction": {
                  "action": "openExternally",
                  "pattern": "\\bNow listening on:\\s+(https?://\\S+)"
              },
              "env": {
                  "ASPNETCORE_ENVIRONMENT": "Development"
              },
              "sourceFileMap": {
                  "/Views": "${workspaceFolder}/Views"
              }
          },
          {
              "name": ".NET Core Attach",
              "type": "coreclr",
              "request": "attach"
          }
      ]
  }