System.Configuration Reference

0

I'm trying to use the System.Configuration reference to finish integrating the instances of my code with a .txt block. However, I noticed that unlike Visual Studios on YouTube videos, mine does not have the References tab below the Dependencies tab in the Solution Explorer.

SoItriedtoadditinanotherwaybyclickingProject>AddreferencebutIcomeacrossthesituationthatthereisnoreferencetobeadded:

I can not find anything about it on the internet. Have any of you gone through this or would you know how to help me?

If this is not the purpose of the forum, I apologize!

    
asked by anonymous 31.07.2017 / 19:47

2 answers

2

Your project is .NET Core, so you need to add this reference by Nuget

PM> Install-Package CoreCompat.System.Configuration -Version 4.2.3-r4 -Pre
    
31.07.2017 / 20:07
0

Only you go to the Assemblies, not your own Solution:

In your project, References, Right-click, Add Reference:

    
31.07.2017 / 19:51