chuongmep / RevitAddInManager

Revit AddinManager update .NET assemblies without restart Revit for developer.
MIT License
311 stars 53 forks source link
addin addinmanager adn aps autodesk autodesk-revit forge revit revitaddin revitaddinmanager revitapi

Revit Add-in Manager

Revit API Platform License: MIT

ReSharper Rider Visual Studio 2022 .NET Framework

Publish [Github All Releases]() HitCount <img src="https://img.shields.io/twitter/follow/chuongmep?style=social&logo=twitter" alt="follow on Twitter">

📋 Summary

Usually, when developing and debugging an addin with RevitAPI, user has to close & re-open Revit 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 Revit again and again. With current technology, you can use Hot Reload to speed it up.But try this project it will be faster with any Addin.

The product will be expanded in the future in process to support mutiple platform :

📦 Some feature include:

Command

Startup

Trace/Debug


⚙️ Installation

Please follow last release at section Release

Version support : From Revit 2019 to Revit 2025.


⌨️Guideline

using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;
[Transaction(TransactionMode.Manual)]
public class TraceWriteLine : IExternalCommand
{
    public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
    {
        //Trace or Debug Something
        Debug.Write($"Message output");
        Debug.WriteLine($"Message output");
        Trace.Write($"Message output");
        Trace.WriteLine($"Message output");
        return Result.Succeeded;
    }
}

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

Some topic common:


✒️ Author

Originally implemented by Autodesk with platform Windows Forms and now it maintain 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.

Credit to icons8.com for the Revit Add-in Manager icons.

© 2010 Autodesk, Inc. All rights reserved. All use of this Software is subject to the terms and conditions of the Autodesk End User License Agreement accepted upon installation of this Software and/or packaged with the Software.


🍚 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.


🖇️ Learning Resources

📌 Open Resource Recommend

I suggest you some of these projects, hope you will like it.

Star History Chart