Drag-Drop-Explorer

This commit is contained in:
2023-01-02 10:10:53 -07:00
parent af24897853
commit 110b306206
13 changed files with 497 additions and 1 deletions

19
.vscode/launch.json vendored
View File

@ -104,7 +104,24 @@
"ASPNETCORE_ENVIRONMENT": "Development"
},
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"console": "integratedTerminal",
"stopAtEntry": false,
"requireExactSource": false
},
{
"name": "Drag-Drop-Explorer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Drag-Drop-Explorer/bin/Debug/net7.0-windows/win-x64/Drag-Drop-Explorer.dll",
"args": [
"s"
],
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"stopAtEntry": false,
"requireExactSource": false
},