Tommie Jones
Tommie Jones

Reputation: 1011

Adding System.Configuration to a C# console application

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. enter image description here

Any guidance would be appreciated

Upvotes: 1

Views: 1458

Answers (1)

Kyle B Cox
Kyle B Cox

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

Related Questions