You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running a command like dotnet run -- db-patch file.sql --environment Staging results in the following error:
Context
I tried to set up my .NET 6 web application as described in the docs. In summary, my Program.cs file looks like the following:
varbuilder=WebApplication.CreateBuilder(args);builder.Host.ApplyOaktonExtensions();// ... other changes in the host builder (e.g. builder.Services.AddAuthentication())varapp=builder.Build();// ... changes in the app (e.g. app.UseAuthentication())returnawaitapp.RunOaktonCommands(args);
My development environment is a macOS with Apple silicon.
The text was updated successfully, but these errors were encountered:
Symptom
Running a command like
dotnet run -- db-patch file.sql --environment Staging
results in the following error:Context
I tried to set up my .NET 6 web application as described in the docs. In summary, my Program.cs file looks like the following:
My development environment is a macOS with Apple silicon.
The text was updated successfully, but these errors were encountered: