From f2bd1fd1befb05ccb08656fb793cf3d449dfd8dd Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Thu, 15 Dec 2022 17:08:10 -0600 Subject: [PATCH] build: Update paths in build scripts --- .vscode/launch.json | 4 ++-- .vscode/tasks.json | 4 ++-- ci/Publish.ps1 | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7e446826..369cd9a5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,11 +6,11 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/src/Recyclarr/bin/Debug/net6.0/recyclarr", + "program": "${workspaceFolder}/src/Recyclarr.Cli/bin/Debug/net7.0/recyclarr", "args": [ "radarr" ], - "cwd": "${workspaceFolder}/src/Recyclarr/bin/Debug/net6.0/", + "cwd": "${workspaceFolder}/src/Recyclarr.Cli/bin/Debug/net7.0/", "stopAtEntry": false, "console": "internalConsole" } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fdda5b31..375576db 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,7 +7,7 @@ "type": "process", "args": [ "build", - "${workspaceFolder}/src/Recyclarr/Recyclarr.csproj", + "${workspaceFolder}/src/Recyclarr.Cli/Recyclarr.Cli.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -19,7 +19,7 @@ "type": "process", "args": [ "publish", - "${workspaceFolder}/src/Recyclarr/Recyclarr.csproj", + "${workspaceFolder}/src/Recyclarr.Cli/Recyclarr.Cli.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary", "-o", diff --git a/ci/Publish.ps1 b/ci/Publish.ps1 index 10fefaa1..426acd3c 100644 --- a/ci/Publish.ps1 +++ b/ci/Publish.ps1 @@ -7,7 +7,7 @@ param ( [string] $Configuration = "Release", - [string] $BuildPath = "src\Recyclarr", + [string] $BuildPath = "src\Recyclarr.Cli", [switch] $NoSingleFile )