frostfs-powershell/.vscode/launch.json

24 lines
798 B
JSON
Raw Normal View History

2024-06-13 08:32:48 +00:00
{
// 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"
}
]
}