I have just installed VS2017. I am trying to figure out how to use an application config file in a simple CLI program. I created an app.config file, added my app setting like I do in VS2010. This is where I run into problems. I cannot find ConfigurationManager.
In VS2010 I had to add a reference to a .NET assembly and then add "using System.Configuration;" In 2017 when I go to add a reference there is no ".NET assemblies" tab.
I have looked through the "Get tools and features". I suspect I need to install something but I don't know what. All of the MS documentation implies I can just add a "using" directive to get it to work but that hasn't worked for me. (The examples don't compile.)
I'm finding it surprisingly difficult to get up and running. If I'm not supposed to use ConfigurationManager any more then can someone point me in the right direction? If ConfigurationManager is still okay then what have I missed?