I am trying to develop an application for autocad.
i am using the following namespaces :
System;
System.IO;
System.Text;
System.Collections;
System.Windows.Forms;
System.Collections.Generic;
System.Runtime.InteropServices;
Autodesk.AutoCAD;
Autodesk.AutoCAD.Geometry;
Autodesk.AutoCAD.ComponentModel;
Autodesk.AutoCAD.Customization;
Autodesk.AutoCAD.ApplicationServices;
Autodesk.AutoCAD.EditorInput;
Autodesk.AutoCAD.GraphicsInterface;
Autodesk.AutoCAD.GraphicsSystem;
Autodesk.AutoCAD.LayerManager;
Autodesk.AutoCAD.Runtime;
Autodesk.AutoCAD.DataExtraction;
Autodesk.AutoCAD.DatabaseServices;
Among these namespaces, if i add a ACDX.dll, intellisense is able to detect the Autodesk.AutoCAD.DataExtraction namespace and if i debug the solution then i am not able to see acdx.dll in my refrences tab and even the namespace Autodesk.AutoCAD.DataExtraction is throwing an error saying that "The type or namespace name 'DataExtraction' does not exist in the namespace 'Autodesk.AutoCAD' (are you missing an assembly reference?)"
I have the following references added in my project:
ac32bitappserver.dll
AcCoreMgd.dll
AcCui.dll
AcDbMgd.dll
acdbmgdbrep.dll
AcDx.dll
AcMgd.dll
acmnuparser.dll
AcMr.dll
AcTcMgd.dll
AcWindows.dll
AdWindows.dll
managedmc3.dll
Can u please help me out in resolving this issue.
Thank you!