I am using .Net Standard 1.5 and want to read some values ββfrom my configuration. However the next line
ConfigurationManager.AppSettings["Foo"]
gives me the following compile time error:
CS7069 A reference to the type "NameValueCollection" claims to be defined in "System", but could not be found
I thought there might be another way to read from the AppSettings in the .NET Framework, but I did not find anything in this thread.
wertzui
source share