24 lines
798 B
JSON
24 lines
798 B
JSON
|
{
|
||
|
// 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": "PowerShell cmdlets: pwsh",
|
||
|
"type": "coreclr",
|
||
|
"request": "launch",
|
||
|
"preLaunchTask": "dotnet: build",
|
||
|
"program": "pwsh",
|
||
|
"args": [
|
||
|
"-NoExit",
|
||
|
"-NoProfile",
|
||
|
"-Command",
|
||
|
"Import-Module ${workspaceFolder}/bin/Debug/net8/FrostFS.Powershell.dll",
|
||
|
],
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"stopAtEntry": false,
|
||
|
"console": "integratedTerminal"
|
||
|
}
|
||
|
]
|
||
|
}
|