Command line tool to Install/Uninstall Autodesk AppBundle.
The AppBundle is a standardized format for Autodesk applications. This package format enables the application or addin to be loaded in many different Autodesk products and versions.
Check the Autodesk.PackageBuilder package for more information how the standard work between Autodesk products.
dotnet tool install --global ricaun.AppBundleTool
The AppBundleTool
command line tool provides the following commands:
Command -l
and --lint
to list all installed bundle.
AppBundleTool -l
Command -a
and --app
to show information about a bundle.
AppBundleTool -a <bundle-path.zip or bundle-name>
Command -i
and --install
to install the bundle. The bundle is installed in the current user folder (%AppData%
) by default, if the package is already installed, the same folder is selected and installed over the existing files.
AppBundleTool -a <bundle-path.zip> -i
Command -u
and --uninstall
to uninstall the bundle. The bundle is uninstalled by sending the folder to the recycle bin.
AppBundleTool -a <bundle-path.zip or bundle-name> -u
The following example shows how to install a bundle from a URL in the RevitAddin.CommandLoader releases.
AppBundleTool -a https://github.com/ricaun-io/RevitAddin.CommandLoader/releases/latest/download/RevitAddin.CommandLoader.bundle.zip -i
AppBundleTool -a https://github.com/ricaun-io/RevitAddin.CommandLoader/releases/download/1.1.0/RevitAddin.CommandLoader.bundle.zip -i
This project is licensed under the MIT License.
Do you like this project? Please star this project on GitHub!