Skip to content

Commit

Permalink
Update launch.json (#1603)
Browse files Browse the repository at this point in the history
  • Loading branch information
bergmeister authored Nov 3, 2020
1 parent 553af8b commit fc307cb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
"cwd": "${workspaceFolder}",
"createTemporaryIntegratedConsole": true
},
{
"type": "PowerShell",
"request": "launch",
"name": "Build & Import PSSA",
"script": "./build.ps1; Import-Module ./out/PSScriptAnalyzer/*/PSScriptAnalyzer.psd1",
"args": [
""
],
"cwd": "${workspaceFolder}",
"createTemporaryIntegratedConsole": true
},
{
"type": "PowerShell",
"request": "launch",
Expand Down

3 comments on commit fc307cb

@obalola-01
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the purpose of this code because i want to recover the settings.json file in VS Code.

@bergmeister
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

launch.json is the configuration of the debugger

@obalola-01
Copy link

@obalola-01 obalola-01 commented on fc307cb Feb 13, 2024 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.