Skip to content

plindjo/DynamoRevit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Building DynamoRevit

Background Info

DynamoRevit is a library of Dynamo Nodes as well as a set of utilities for interacting with Revit via the Dynamo visual programming language.

DynamoRevit has different branches for different versions of Revit. For example to run DynamoRevit on Revit 2016 you want the DynamoRevit 2016 branch. DynamoRevit is also built on top of Dynamo, and in some cases requires matching the version of Dynamo as well. For example, to run DynamoRevit on Revit 2016 using Dynamo .91 you want to build The Dynamo .91 Branch, then build the DynamoRevit .91 2016 branch.

####Steps Download Dynamo from http://www.github.com/DyanmoDS/Dynamo Download DynamoRevit from here. Build Dynamo.all.sln Build DynamoRevit.2013.sln

if you have a version of revit installed, you can build an installer from Dynamo/Tools/Install/...

if you do not have an installed version of revit, you can create an .addin file that points to the Dynamo application manually: in the correct Revit adding location for your application add a text file as follows:

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<RevitAddIns>
<AddIn Type="Application">
<Name>Dynamo For Revit</Name>
<Assembly>"E:\MyGitPath\Dynamo\bin\AnyCPU\Debug\Revit_xxxx\DynamoRevitVersionSelector.dll"</Assembly>
<AddInId>8D83C886-B739-4ACD-A9DB-1BC78F315B2B</AddInId>
<FullClassName>Dynamo.Applications.VersionLoader</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Dynamo</VendorDescription>
</AddIn>
</RevitAddIns>

you want to point the addin button thats loaded into Revit to the VersionSelector.dll that is built during a build of DynamoRevit and copied into the Dynamo/bin/Revitxxx/ folder.

DynamoRevit requires a few dependencies

  • Dynamo from http://www.github.com/DyanmoDS/Dynamo. The required binaries are obtained from DynamoVisualProgramming, NuGet Packages.
  • RevitAPI.dll + RevitAPIUI.dll (path set with REVITAPI)
  • IronPython 2.7 (this is already installed if you install Dynamo)
  • Few other dependencies are also fetched from NuGet package.

####Build Issues

  • NuGet packages are downloaded using restorepackages.bat, it creates soft link for all the NuGet packages folder dropping the version information so that the projects files doesn't need to be changed when package versions are changed. The package versions are defined in packages-template.aget file. LatestBeta is used for Dynamo specific packages to automatically download the latest beta packages.

  • restorepackages.bat file is run as a pre-build step for AssemblySharedInfoGenerator project. Sometimes this file may fail to create the symbolic links in absence of administrative privilege. To fix the issue you can run restorepackages.bat file as administrator.

  • if you see errors like: 1> "C:\Program Files (x86)\Common Files\microsoft shared\TextTemplating\11.0\TextTransform.exe" -out AssemblySharedInfo.cs AssemblySharedInfo.tt 1>c:\Users\bykovsm\AppData\Local\Temp\AssemblySharedInfo.tt(1,1): error CS1519: Compiling transformation: Invalid token 'this' in class, struct, or interface member declaration 1>c:\Users\bykovsm\AppData\Local\Temp\AssemblySharedInfo.tt(1,6): error CS1520: Compiling transformation: Method must have a return type then you need to get rid of any white space in the last line of DynamoRevit/src/AssemblyInfoGenerator/transform_all.tt it's also possible that transform_all.bat is looking for a text templating engine for a version of visual studio you do not have installed.

  • if you see missing classes or namespaces from the Revit or Dynamo APIS see here: CS.props contains environment variable DYNAMOAPI and REVITAPI to define path for Dynamo and Revit libraries respectively. These environment variables can be overwritten by providing correct path for Dynamo and Revit libraries in user_locals.props

####Note#### the installer structure for DynamoCore and DynamoRevit has recently changed - if you have trouble with these instructions please reach out to the Dynamo team for help.

About

Dynamo Libraries for Revit

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.7%
  • Other 0.3%