Reputation: 1011
I am trying to access System.Configuration in a console app in the Microsoft Visual Studio. Im a newbie when it comes to microsoft development. I know I need to add a reference. However its not obvious when I click add reference on where I would find the dll.
Any guidance would be appreciated
Upvotes: 1
Views: 1458
Reputation: 421
Add Reference allows you to add a local reference, so a project ion that solution.
you will need to look at NuGet package manager for getting 3rd party or Microsoft libraries.
you can find this in the same context menu as the add reference item however it will say, Manage NuGet Packages
Upvotes: 2