From 369e07069430a37442078ae03bd4a83d1581cabe Mon Sep 17 00:00:00 2001 From: Lamparter <71598437+Lamparter@users.noreply.github.com> Date: Sun, 19 Jan 2025 08:26:50 +0000 Subject: [PATCH] Add launch profiles to CLI project --- .../Properties/launchSettings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/Riverside.JsonBinder.Console/Properties/launchSettings.json diff --git a/src/Riverside.JsonBinder.Console/Properties/launchSettings.json b/src/Riverside.JsonBinder.Console/Properties/launchSettings.json new file mode 100644 index 0000000..7c385d8 --- /dev/null +++ b/src/Riverside.JsonBinder.Console/Properties/launchSettings.json @@ -0,0 +1,15 @@ +{ + "profiles": { + "JsonBinder Console": { + "commandName": "Project", + "commandLineArgs": "", + "launchBrowser": false + }, + "JsonBinder Classic": { + "commandName": "Project", + "commandLineArgs": "classic", + "launchBrowser": false + } + } +} +