In the .NET Framework I was used to use settings from Properties - Settings (Properties.Settings.Default.SomeSettingsValue). It was very easy and clean to use. I'm starting to use .NET Core now, but there is not any settings like this. I found some solutions but none of them was so clean and simple like the old one.
What is the best practice and solution for the settings in .NET Core?
Thank you.