SPDataSource + Missing reference in SharePoint 2013 project - c#

I have a project built in SharePoint 2013. I have a SPDataSource as Base class in my project. I have a reference to the Microsoft.SharePoint.dll file but still this SPDataSource and SPDataSourceView are giving me error.
Missing Namespace error
Severity Code Description Project File Line Suppression State
Error CS0246 The type or namespace name 'SPDataSource' could not be found (are you missing a using directive or an assembly reference?)
Can anybody tell me why is this?
Thanks in advance

Create a new project from inside visual studio from the Templates -> Office/SharePoint -> SharePoint 2013 Empty project.
From there compare the references between that and your project.

Related

How Can I resolve this assembly reference issue in ASP.Net project?

I'm going to run the ASP.net website on Visual Studio 2019
It used the ASP.NET MVC framework With NHibernate.
The solution has 5 projects including Domain, UI, Media, Resources, ...
When building the solution, gets these errors.
CS0234 The type or namespace name 'MediaServices' does not exist in the namespace 'ESK.Business' (are you missing an assembly reference?) Pazar.Domain E:\project\esk\src\Domain\ESK.Domain\Subscribers\MoveMediaCommand.cs
CS0234 The type or namespace name 'Resources' does not exist in the namespace 'ESK' (are you missing an assembly reference?) ESK.Domain E:\project\esk\src\Domain\ESK.Domain\BackgroundTasks\BetterTask\Commands\TaskNotifyGalleryOnCreateEmailCommand.cs
The first error is concerned soap service but I can't resolve it.
The second error is concerned the Resources project that has the App_GlobalResources package.
Please help me to fix these errors. I think it's ABC in programming.

How to fix problem with Designer.cs file?

Severity Code Description Project File Line Suppression State
Error CS0246 The type or namespace name 'DbContextAttribute' could not be found (are you missing a using directive or an assembly reference?) Hotel C:\Users\Adis\source\repos\webapp\Hotel\Hotel\Migrations\20200625154358_firstOne.Designer.cs 12 Active
I have problem with designer.cs file, some files are deleted from my device, after that i can't build my project. Anyone have idea what to do ? Thanks.
Try uninstalling (if installed) EntityFramework and re-installing. Failing that, please post what references you currently have.

How to add reference from Internet for visual studio 2013 in C#

I can not run a project that built in another laptop with same version of visual studio.There is an error
"Error 4 The type or namespace name 'Ivi' could not be found (are you missing a using directive or an assembly reference?)"
How I add this to my laptop visual studio
error
Your compiler tells you, that you are missing some references. Most likely you are missing some assemblies.
Check under References if both assemblies are available. Do they have an yellow warning sign? If yes, visual studio can not resolve the path to the assembly or the assembly is just missing.
You have to provide some more details about your setup or configuration of the project to determine the situation.

Xamarin.Forms - 'Foundation' could not be found

I've created a new 'Blank Xaml App (Xamarin.Forms Shared)' app in Microsoft Visual Studio Enterprise 2015 version 14.0.25123.00 Update 2.
Immediately after creating the project, I was greeted with 217 errors.
Restarting Visual Studio removed most of those, but 35 still remain.
The first two errors are about Foundation and UIKit not being found. I believe these two might also cause the rest of the errors.
Does anyone have some ideas as to how to solve these?
Error CS0246 The type or namespace name 'Foundation' could not be found (are you missing a using directive or an assembly reference?)
Error CS0246 The type or namespace name 'UIKit' could not be found (are you missing a using directive or an assembly reference?)
If you are missing the reference to Xamarin.iOS, try re-adding it manually:
Under the Xamarin.iOS project, right click References > Add Reference...
In the references dialog, on the left hand side, click on Assemblies, then Framework. Search for Xamarin.iOS and select it to add the reference.
If the Xamarin.iOS assembly isn't listed, take a look under this path:
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Xamarin.iOS\v1.0
If the assembly is missing from that directory, try repairing the Xamarin installation - Windows Programs and Features > Xamarin > Repair.

visual studio 2013 on rebuild ddl Issue

I have a asp.net solution which consists of multiple class library whose dll' are been used in one web application.When I build and rebuild the class library I don't face any issue, later when I try to build and rebuild the solution few of my dll files gets deleted from bin.Tried adding reference path but in vein.
Warning : Could not resolve this reference. Could not locate the assembly "classlibrary2". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. classlibrary1
Error 10 The type or namespace name 'Classlibrary1' could not be found (are you missing a using directive or an assembly reference?)
Note:All projects are in same framework

Categories

Resources