As announced previously, Revit Addin Wizard (RevitAddinWizard) and its various wizards, coders and widgets have supported Revit API 2012 additionally natively and seamlessly.
In this post, let us have a look at the Application Manifest Creator Wizard. Its wizard pages are the same as before. The only difference is that for external applications of Revit addin projects of version 2012 the VendorId node will be created into the resultant manifest .AddIn file.
<?xml version="1.0" encoding="utf-8"?>
<RevitAddIns>
<AddIn Type="Application">
<Assembly>C:\Temp\RevitAddinCS1\RevitAddinCS1\bin\Debug\RevitAddinCS1.dll</Assembly>
<FullClassName>RevitAddinCS1.ExtApp</FullClassName>
<ClientId>00ca0c7d-4057-42c1-9ce8-187a1513ffa0</ClientId>
<Name>RevitAddinCS1_ExtApp</Name>
<VendorId>ABC</VendorId>
</AddIn>
</RevitAddIns>
The VendorId is retrieved from the RevitAddinWizard settings automatically and intelligently. So if the VendorId is not wanted yet at this moment, it can either be changed automatically from next time on after it’s reset in the RevitAddinWizard pages or updated manually.
Revit Addin Wizard (RevitAddinWizard) and its various wizards, coders and widgets have supported Revit API 2012 additionally natively and seamlessly.
Recent Comments