-
System.Configuration
I don't have this assembly in my .net???? I see System.configuration with lower case but no upper case?
System.configuration version 2.0.0
I am trying to get the connection string settings from the app.config. I have added a reference to the above and included the "using System.Configuration" to my class .cs file, but I don't see the System.Configuration.ConnectionStringSettings class. Are there different versions of this .net assembly????
Any ideas?
Mike B
-
Re: System.Configuration
If you are able to add a reference to it, it is installed on you machine (it is standard part of Fx2.0). Try to type whole class name including namespaces, or try to access the setting via Settings class which is generated by VS is you edit Settings page of project's properties.