Как указано в конфигурации в ASP.NET Core , аргументы могут быть переданы одним из следующих способов:
No prefix CommandLineKey1=value1
Two dashes --CommandLineKey2=value2, --CommandLineKey2 value2
Slash (/) /CommandLineKey3=value3, /CommandLineKey3 value3
Пример:
# Setting Warning level for all microsoft types
dotnet your.dll --Logging:LogLevel:Microsoft=Warning
# or setting Information level for your own types
dotnet run /Logging:LogLevel:YourNamespace:YourType Information