Laggel
Laggel

Reputation: 1386

How can I use the objects ConnectionStringSettings and ConfigurationManager into my C# - NUNIT project?

I'm trying to apply the solution proposed in this question: Using the connectionstring in an nunit test but I can't seem to find the ConnectionStringSettings and ConfigurationManager objects in the new Framework 4.5.

I added the namespace: System.Configuration. Where acording Microsoft Documentation is supposed to be. But Visual Studio still cant find it.

Could anyone here give me a hand with this?

Upvotes: 1

Views: 3953

Answers (2)

404 Not found
404 Not found

Reputation: 201

Add reference to System.configuration to your project and use that dll in files

Upvotes: 0

techBeginner
techBeginner

Reputation: 3850

Add reference to System.Configuration to your project..

Upvotes: 6

Related Questions