In this article we are going to see how to resolve "The type or namespace name 'SharePoint' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) "for console application in Visual Studio 2010.
In this article we are going to see how to resolve "The type or namespace name 'SharePoint' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) "For console application in Visual Studio 2010. Even though if you add the Reference Microsoft.SharePoint.dll or Microsoft.SharePoint.Client.dll in your console application and if you try to build your application, you will be getting the above error.
I have created one Console application using Visual Studio 2010 and I have added the reference Microsoft.SharePoint.dll or Microsoft.SharePoint.Client.dll.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Client;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Client;
namespace ClientObjectModelIntroduction
{
class Program {
static void Main(string[] args)
{
{
class Program {
static void Main(string[] args)
{
ClientContext site = new ClientContext("http://abc/");
SPWeb web= new SPSite("http://abc/").OpenWeb();
}
}
}
When you hit the F5 you will be getting the follownig error.
How to resolve this error:
How to resolve this error:
- Go to the Solution explorer.
- Right click on the Solution Explorer and click Properties.
- Select Application Tab, by default Target Framework will be .Net Framework 3.5 Client Profile change it to .Net Framework 3.5.
- Once you change the Target Framework "Target Framework Change "wizard will pop up.
- Click Yes.
- Go the Build tab and change the Platform Target to x64.
- Hit F5 now you will be able to debug successfully.
Thank you ever so for you article. Really Cool.
ReplyDeletesharepoint training
sharepoint online training