some build changes

This commit is contained in:
john 2025-05-18 17:29:18 +02:00
parent 58ec15e94d
commit 8f0cb82cce
2 changed files with 5 additions and 2 deletions

View file

@ -25,6 +25,8 @@ var connectionStringArg = new Argument<string>(
var connectionStringOption = new Option<string?>(
["-c", "--connection-string"],
// we default this to the same variable used by the server application
() => System.Environment.GetEnvironmentVariable("ConnectionStrings__Database") ?? null,
"the connection string to the database"
);