In Windows for a console application I use the App.config , section appSettings to store some configuration parameter, see the example:
<Configuration>
<AppSettings>
<Add key="param1" value="value1 "/>
<Add key="param2" value="value2 "/>
</ AppSettings>
</Configuration>
Using .Net Core for a console application on Linux, where I save the configuration, is there something similar to App.config?