Skip to content

Autodesk Store bundle

Nice3point edited this page Mar 10, 2024 · 10 revisions

To publish your application to the Autodesk Store, you need to prepare a bundle according to a certain standard. The template will create it for you, and pack it into a Zip archive, you just have to upload it on the site.

Nuke setup

  • Open Build/Build.Configuration.cs file

  • Update Bundles property

    image

    Use the names of the projects that Nuke source generator creates

Remarks

  • Requires set option "Bundle support" when creating the solution
  • The builder will build the bundle including files from all dependencies. For example, RevitAddin1 project bundle will include Dependency2.dll and RevitAddin2 will include Dependency1.dll and Dependency2.dll.

image

Output files

📂output
 ┗📜RevitAddIn.zip
   ┗📂RevitAddIn.bundle
     ┣📜PackageContents.xml
     ┗📂Contents
       ┣📂2020
       ┃ ┣📜RevitAddIn.addin
       ┃ ┗📂RevitAddIn
       ┃   ┗📜RevitAddIn.dll    
       ┗📂2021
         ┣📜RevitAddIn.addin
         ┗📂RevitAddIn
           ┗📜RevitAddIn.dll
Clone this wiki locally