Copying over answer from comment
Note: launch.json is found in the .vscode folder under your project.
In your launch.json, try adding:
"args": ["dropdb", "migratedb", "seeddb"]
to the target launch configuration.
Providing Context Inside launch.json
Your launch.json will contain an empty args element by default which looks something like:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/<YourProjName>/bin/Debug/net6.0/YourProjName.dll",
"args": [],
"cwd": "${workspaceFolder}/<YourProjName>",
"stopAtEntry": false,
"serverReadyAction": {
.
.
.
// launch.json file continues...
"args": ["dropdb", "migratedb", "seeddb"]to yourlaunch.jsonconfiguration?