DynamoWishlist
DynamoWishlist copied to clipboard
Maintain For Mutiple Version Dynamo Package Publish
If this is an issue for Dynamo Core, please submit your issue on the Dynamo Core issues page or if this is an issue for Dynamo for Revit, please post your issue on the Dynamo for Revit Issues page.
If this issue is not a Wishlist request, please check the Dynamo forum, and start a thread there to discuss your issue.
What improvement/feature would you like to see in Dynamo?
I would like to see something that can clearly define loading and define versions similar to the definition when creating a plugin in revit. This problem will be serious if packages are not properly maintained and cause errors when publishing to dynamo package, then I want to maintain my package to support lower revit versions. How? It's confusing and they make me stop developing support packages in dynamo instead of addins, consider this. Because if not, the only way I can do it now is to put them on github and develop run each installation file.
How would you see this improvement/feature working?
one xml defind something like that:
<ApplicationPackage SchemaVersion="1.0.0" AppVersion="1.0.0" ProductCode="57C26AE0-0AB6-40C5-9EC6-3D1C2A5FB397">
<RuntimeRequirements OS="Win64" Platform="Revit" SeriesMin="R2020" SeriesMax="R2023" />
<Components Description="2020">
<RuntimeRequirements OS="Win64" Platform="Revit" SeriesMin="R2020" SeriesMax="R2020" />
<ComponentEntry AppName="Fammer" ModuleName="Contents/2020/RevitAddin.addin"></ComponentEntry>
</Components>
<Components Description="2021">
<RuntimeRequirements OS="Win64" Platform="Revit" SeriesMin="R2021" SeriesMax="R2021"/>
<ComponentEntry AppName="Fammer" ModuleName="Contents/2021/RevitAddin.addin"></ComponentEntry>
</Components>
<Components Description="2022">
<RuntimeRequirements OS="Win64" Platform="Revit" SeriesMin="R2022" SeriesMax="R2022"/>
<ComponentEntry AppName="Fammer" ModuleName="Contents/2022/RevitAddin.addin"></ComponentEntry>
</Components>
<Components Description="2023">
<RuntimeRequirements OS="Win64" Platform="Revit" SeriesMin="R2023" SeriesMax="R2023"/>
<ComponentEntry AppName="Fammer" ModuleName="Contents/2023/RevitAddin.addin"></ComponentEntry>
</Components>
</ApplicationPackage>
Please provide any sketch/mock-up or video of your requested improvement/feature
(Fill in here)