dotnet tool install dotnet-ef -g
dotnet ef migrations add MigrationName -p Nellebot.Data.Migrations
dotnet ef migrations remove -p Nellebot.Data.Migrations
dotnet ef database update -p Nellebot.Data.Migrations
dotnet ef database update TargetMigration -p Nellebot.Data.Migrations
dotnet ef migrations script --idempotent -o database_migration.sql -p Nellebot.Data.Migrations
dotnet publish -c Release -r win10-x64 --self-contained false
dotnet publish -c Release -r linux-x64 --self-contained false
dotnet user-secrets list
dotnet user-secrets set "SECRET_NAME" "SECRET_VALUE"