From be46b708a5998f8879fb7e4e36cab7e08940747f Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Wed, 22 Nov 2023 10:23:37 -0600 Subject: [PATCH] build: Replace Rider run configs with launch settings --- .../.idea/runConfigurations/sync.xml | 20 ------------------- .../Properties/launchSettings.json | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) delete mode 100644 .idea/.idea.Recyclarr/.idea/runConfigurations/sync.xml create mode 100644 src/Recyclarr.Cli/Properties/launchSettings.json diff --git a/.idea/.idea.Recyclarr/.idea/runConfigurations/sync.xml b/.idea/.idea.Recyclarr/.idea/runConfigurations/sync.xml deleted file mode 100644 index 3d8f0bc3..00000000 --- a/.idea/.idea.Recyclarr/.idea/runConfigurations/sync.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/Recyclarr.Cli/Properties/launchSettings.json b/src/Recyclarr.Cli/Properties/launchSettings.json new file mode 100644 index 00000000..2908d83a --- /dev/null +++ b/src/Recyclarr.Cli/Properties/launchSettings.json @@ -0,0 +1,20 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "profiles": { + "sync": { + "commandName": "Project", + "targetProject": "Recyclarr.Cli", + "commandLineArgs": "sync" + }, + "config list local": { + "commandName": "Project", + "targetProject": "Recyclarr.Cli", + "commandLineArgs": "config list local" + }, + "delete custom-formats": { + "commandName": "Project", + "targetProject": "Recyclarr.Cli", + "commandLineArgs": "delete custom-formats" + } + } +}