• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Valued Mentor
    Posts: 267
    Registered: ‎08-13-2007
    Accepted Solution

    autocad 2013 CommandMethod assembly reference

    1258 Views, 4 Replies
    04-12-2012 03:20 AM

    Microsoft Visual C# 2010 Express

    Trying to create first dll in 2013, 

    referenced acdbmgd and acmgd (as usual, as in previous versions)

     

    then included:

     

    using Autodesk.AutoCAD.Runtime;
    using Autodesk.AutoCAD.ApplicationServices;
    using Autodesk.AutoCAD.DatabaseServices;
    using Autodesk.AutoCAD.Geometry;

     

    but ...

    Error in IDE (Visual C#) when entering: [CommandMethod("TEST")]

    Error: CommandMethod could not be found .. are you missing a using directive or an assembly reference

     

    ???

    What did I miss?

    Thx.

    Kevin.

     

    Please use plain text.
    *Expert Elite*
    Posts: 6,469
    Registered: ‎06-29-2007

    Re: autocad 2013 CommandMethod assembly reference

    04-12-2012 03:30 AM in reply to: kevin.barnett

    Hi,

     

    for AutoCAD 2013 you have to reference a third dll by default: AcCoreMgd.dll (to be found in the installation directory of AutoCAD).

     

    HTH, - alfred -

    -------------------------------------------------------------------------
    Alfred NESWADBA
    Ingenieur Studio HOLLAUS ... www.hollaus.at
    -------------------------------------------------------------------------
    Please use plain text.
    Valued Mentor
    Posts: 267
    Registered: ‎08-13-2007

    Re: autocad 2013 CommandMethod assembly reference

    04-12-2012 03:35 AM in reply to: alfred.neswadba

    Thank You ... 

    Please use plain text.
    Valued Mentor
    KerryBrown
    Posts: 259
    Registered: ‎11-29-2008

    Re: autocad 2013 CommandMethod assembly reference

    04-12-2012 04:10 AM in reply to: kevin.barnett

     

     

    For Reference :

    http://through-the-interface.typepad.com/through_the_interface/2012/03/migrating-net-applications-to...

    //-------------------------------------------------------

    class keyThumper<T> : Lazy<T>;      another  Swamper


    I do not endorse the social media app links below:smileyembarrassed:

    Please use plain text.
    New Member
    Posts: 1
    Registered: ‎10-01-2008

    Re: autocad 2013 CommandMethod assembly reference

    08-10-2012 12:20 PM in reply to: kevin.barnett

    Excellent - exactly what I needed!

    Please use plain text.