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
I was trying to add CommandLineParser to a asp.net core project of mine to conditionally apply seed and test data on runs.
If I run any sort of tool on the assembly I get output from the Parser.
F.e. dotnet ef migrations list
ERROR(S):
Option 'applicationName' is unknown.
-s, --seed Seed required data.
-t, --test Seed data for dev and testing purposes.
-a, --auth Seed auth data.
--help Display this help screen.
--version Display version information.
I'm assuming that the tools themselves are passing these options or something along the line. Everything seems to work properly, but is this something other people have dealt with in some way?
The text was updated successfully, but these errors were encountered:
I ran into this as well - a couple potential solutions:
Don't parse CLI flags when EF.IsDsignTime is true. This only works if you don't need the CLI flags to properly build the IHost object or don't need the IHost object for configuring the DbContext (e.g., in a case where DbContext configures itself independently of ASP.NET server build).
using Microsoft.EntityFrameworkCore;staticvoidMain(string[]args){if(EF.IsDesignTime){
Log.Logger.Here().Information("Design-time detected. Skipping server startup.");return;}// Parse flags as normal, build ASP.NET application}
Add the applicationName flag to CommandLineParser to avoid the error and build the web app as normal.
internalclassFlags{
#region ASP.NET Core Flags
[Option("applicationName", Default ="MyApp", HelpText ="The name of the application.")]publicstringApplicationName{get;set;}// Other ASP.NET flags as-needed, e.g.:[Option("environment", Default ="Production", HelpText ="The environment the application is running in.")]publicstringEnvironment{get;set;}
#endregion
// Rest of flags...}
I was trying to add CommandLineParser to a asp.net core project of mine to conditionally apply seed and test data on runs.
If I run any sort of tool on the assembly I get output from the Parser.
F.e.
dotnet ef migrations list
I'm assuming that the tools themselves are passing these options or something along the line. Everything seems to work properly, but is this something other people have dealt with in some way?
The text was updated successfully, but these errors were encountered: