From 63f57c3d5b5aa6d992bc162b0895fc6ad461a5c6 Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Thu, 19 Sep 2024 11:18:32 -0400 Subject: [PATCH] [PM-8732] Add new launch configuration for SSO (#4168) * Add new launch configuration for SSO * Removed Admin, added task. --- .vscode/launch.json | 17 ++++++++++++++++- .vscode/tasks.json | 13 +++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0f1de7b8f8d0..c407ba5604ca 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -33,6 +33,21 @@ "preLaunchTask": "buildIdentityApiAdmin", "stopAll": true }, + { + "name": "API, Identity, SSO", + "configurations": [ + "run-API", + "run-Identity", + "run-Sso" + ], + "presentation": { + "hidden": false, + "group": "AA_compounds", + "order": 4 + }, + "preLaunchTask": "buildIdentityApiSso", + "stopAll": true + }, { "name": "Full Server", "configurations": [ @@ -49,7 +64,7 @@ "presentation": { "hidden": false, "group": "AA_compounds", - "order": 4 + "order": 5 }, "preLaunchTask": "buildFullServer", "stopAll": true diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9de8c98ce77d..567f9b6e58cf 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -26,6 +26,19 @@ "$msCompile" ] }, + { + "label": "buildIdentityApiSso", + "hide": true, + "dependsOrder": "sequence", + "dependsOn": [ + "buildIdentity", + "buildAPI", + "buildSso" + ], + "problemMatcher": [ + "$msCompile" + ] + }, { "label": "buildFullServer", "hide": true,