From ea786b40732960c69bb2834f3f24ccecd11395c8 Mon Sep 17 00:00:00 2001 From: Emmanuel Mathot Date: Tue, 7 May 2024 10:23:08 +0200 Subject: [PATCH] feat: Add "Copy S2 from CDS" launch configuration --- .vscode/launch.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index f0f82ba2..d803781d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -906,6 +906,44 @@ // }, "enableStepFiltering": false }, + { + "name": "Copy S2 from CDS", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/src/Stars.Console/bin/Debug/net6.0/Stars.dll", + "args": [ + "copy", + "-v", + "-k", + "-r", + "4", + "-nohtml", + "-si", + "CDS", + "--output", + "/tmp/stars", + "https://catalog.terradue.com/sentinel2/search?uid=S2A_MSIL2A_20231126T082251_N0509_R121_T34HBH_20231126T124654" + ], + "cwd": "${workspaceFolder}/src", + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console + "console": "internalConsole", + "stopAtEntry": false, + "logging": { + "moduleLoad": false + }, + "justMyCode": false, + "requireExactSource": false, + // "symbolOptions": { + // // "searchPaths": [ + // // "/data/workspace/Others/aws-sdk-net/sdk/src" + // // ], + // "searchMicrosoftSymbolServer": true, + // "searchNuGetOrgSymbolServer": true + // }, + "enableStepFiltering": false + }, { "name": ".NET Core Attach", "type": "coreclr",