Skip to content

chuongmep/CadAddinManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cad Add-in Manager

Autocad API Platform License: MIT

ReSharper Rider Visual Studio 2022 .NET Framework

Publish Github All Releases HitCount follow on Twitter

Summary

AddinManager

Usually, when developing and debugging an addin with Autocad or Civil3D API, user has to close & re-open Autocad or Civil3D each time he/she modifies the addin code and wants to re-compile. But with Add-In Manager, user can modify and run the Addin. directly without closing & re-opening Autocad or Civil3D again and again.This is a next branch from Revit Addin Manager to support multiple platform API for developer. With current technology, you can use Hot Reload to speed it up.But try this project it will be faster with any Addin.

Some feature include:

  • A newbie can create a new Add-in and explore AutoCAD or Civil3D API easy with Add-in manager.
  • Add-in tester(use Debug and Trace to test your add-in).
  • Debug / Trace : Support Show result use Debug or Trace to show result in Autocad or Civil3D.
  • Add-in manager
    • AddInManager Manual : Use for normal process load/unload addin
    • AddInManager Faceless : use for load last process before addin without UI
  • Allow user know whether plugin can load successfully or not.
  • F5 - Load fresh plugin don't need load again.
  • F1 - Go link open source report some error,bug or feature request.
  • Delete - Quick remove by use right click or use from keyboard.
  • Crt + MouseWheel - Zoom in/out by use mouse wheel in command plugin.
  • Arrow Up - Move from TreeView to search.
  • Arrow Down - Move from search to TreeView.
  • Esc - Quick Close Add-in Manager.
  • Enter - Quick Run Execute a command selected in Add-in Manager.

Add-In Manager

Command

  • AddInManagerManual
  • AddInManagerFaceless

Execute a command easily :

  1. Create a class library use .NET

  2. Add library Autocad API or Civil3D API

  3. Create a command, example:

   [CommandMethod("DoSomething")]
   public void Execute()
   {
       // do some thing code here
   }

4.Load To Add-in Manager.

5.Double click to run command.

6.Use faceless when you change code or rebuild.

Lisp Function

Execute a Lisp Function easily :

  1. Create a class library use .NET

  2. Add library Autocad API or Civil3D API

  3. Create a Lisp Function, example:

   [LispFunction("DisplayFullName")]
   public static void DisplayFullName(ResultBuffer rbArgs)
   {
       if (rbArgs != null)
       {
           string strVal1 = "";
           string strVal2 = "";
           int nCnt = 0;
           foreach (TypedValue rb in rbArgs)
           {
               if (rb.TypeCode == (int) LispDataType.Text)
               {
                   switch (nCnt)
                   {
                       case 0:
                           strVal1 = rb.Value.ToString();
                           break;
                       case 1:
                           strVal2 = rb.Value.ToString();
                           break;
                   }
                   nCnt = nCnt + 1;
               }
           }
           Application.DocumentManager.MdiActiveDocument.Editor.WriteMessage("\nName: " + strVal1 + " " + strVal2);
           MessageBox.Show("Updated");
       }
   }

4.Load To Add-in Manager.

5.Use Reload when you change code or rebuild.

6.Run Lisp Function example : (displayfullname "First" "Last")

Trace/Debug

  • Show/Hide result inside Dockpanel Autocad and Civil3D.
  • Show Result history inside CadAddinManager.
  • Clear Result.
  • Show Result by color.

A sample command to execute:

using System.Diagnostics;
using Autodesk.AutoCAD.Runtime;
public class DebugTraceTest
{
    [CommandMethod("DebugTraceTest")]
    public void Action()
    {
        //Trace or Debug Something
        Trace.WriteLine($"Warning: This is a warning");
        Trace.WriteLine($"Error: This is a error");
        Trace.WriteLine($"Add: This is a add");
        Trace.WriteLine($"Modify: This is a modify");
        Trace.WriteLine($"Delete: This is a delete");
    }
}

Installation

Please follow last release at section Release

Support Autocad or Civil3D Version : 2020, 2021, 2022, 2023, 2024, 2025

Guideline

You can visit to wiki and read document or access by this link.


Author

Originally implemented by ChuongHo with platform WPF and add more feature to fit with the progressive development of modern technology. His focus is to work smarter and achieve the most effective practices to enhance data utilization and digital collaboration among AEC parties.


License

This sample is licensed under the terms of the MIT License. Please see the License file for full details.


Contribute

Add-In Manager is an open-source project and would be nothing without its community. You can make suggestions or track and submit bugs via Github issues. You can submit your own code to the Add-In Manager project via a Github pull request .

Many Thanks all contributors for this repository. Feel free to contribute! Please refer to the CONTRIBUTING for details.


Sponsors

Thanks for providing a free All product IDE for this project.


Credits

Known Issues

Learning Resources