Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add reference to assembly in vs2012

I need help on how to correctly add assembly in C# code.

I start a blank project and trying to run the simple code below. but has referencing errors. I know by default system.dll is included under the references folder.

so why is it still complain that "'System.Configuration is not been referenced"? Am I missing some manual steps? If so how do I do it?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Configuration;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            HttpWebRequestElement ae = new HttpWebRequestElement();
            ae.UseUnsafeHeaderParsing = false;
        }
    }
}

The type 'System.Configuration.ConfigurationElement' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.

Thanks for helping

like image 325
Problems Problems Avatar asked Feb 07 '13 04:02

Problems Problems


1 Answers

Right click on project references and add reference to System.Configuration

enter image description here

like image 157
Yaqub Ahmad Avatar answered Oct 06 '22 16:10

Yaqub Ahmad