Skip to content

Commit

Permalink
Update .vscode/launch.json
Browse files Browse the repository at this point in the history
Update the program path, since the target framework changed,
and change the launch target to the integrated terminal.
  • Loading branch information
revam committed Aug 19, 2021
1 parent 4919c75 commit 1964d2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Shoko.Server/bin/Debug/netcoreapp3.1/Shoko.CLI.dll",
"program": "${workspaceFolder}/Shoko.Server/bin/Debug/net5.0/Shoko.CLI.dll",
"args": [],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"console": "integratedTerminal",
"stopAtEntry": false
},
{
Expand All @@ -23,11 +23,11 @@
"request": "launch",
"preLaunchTask": "build-mediainfo",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Shoko.Server/bin/Debug/netcoreapp3.1/MediaInfoWrapper.dll",
"program": "${workspaceFolder}/Shoko.Server/bin/Debug/net5.0/MediaInfoWrapper.dll",
"args": ["/share/raid/Hentai/Vicious/[RG] Vicious - 2 (640x480 DVD XviD) [BC5B644C].ogm", "5"],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"console": "integratedTerminal",
"stopAtEntry": false
},
{
Expand All @@ -37,4 +37,4 @@
"processId": "${command:pickProcess}"
}
]
}
}

0 comments on commit 1964d2d

Please sign in to comment.