Using config file in .NET Standard does not work
问题 How can you use a console config file (App.config) in a .NET Standard project. I have one console application with in the App.config: <appSettings> <add key="Test" value="test" /> </appSettings> In my .NET Standard project I added the NuGet package: Install-Package System.Configuration.ConfigurationManager -Version 4.5.0 And have a class that returns the value of that Key: public string Test() { return ConfigurationManager.AppSettings["Test"]; } This is just to test if I could use App.config