Skip to content

Instantly share code, notes, and snippets.

@pldmgg
Last active August 30, 2017 11:04
Show Gist options
  • Save pldmgg/08619a540af6e216d0193d1cca1045ae to your computer and use it in GitHub Desktop.
Save pldmgg/08619a540af6e216d0193d1cca1045ae to your computer and use it in GitHub Desktop.
OpenScrapingProject .vscode launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Script Debug",
"type": "coreclr",
"request": "launch",
"program": "${env:ProgramFiles}\\dotnet\\dotnet.exe",
"args": [
"exec",
"--additionalprobingpath", "${env:USERPROFILE}\\.nuget\\packages",
"--depsfile", "${env:USERPROFILE}\\.nuget\\packages\\.tools\\dotnet.script\\0.12.1-beta\\netcoreapp2.0\\Dotnet.Script.deps.json",
"${env:USERPROFILE}\\.nuget\\packages\\dotnet.script\\0.12.1-beta\\lib\\netcoreapp1.1\\dotnet-script.dll",
"${workspaceRoot}\\OpenScrapingTest_For_dotnet-script_cli.csx",
"-d"],
"cwd": "${workspaceRoot}",
"externalConsole": false,
"stopAtEntry": true,
"internalConsoleOptions": "openOnSessionStart",
"requireExactSource": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment