After the significant struggle I had to compile the initial release of the Revit 2019 SDK samples and set up RvtSamples 2019, I am happy to report that installing and compiling the Revit 2019 SDK April 27 update is a lot easier:
RevitAPISteel.dll
– 3 warnings RvtSamples
RvtSamples
download We are still waiting for the Revit 2019 SDK April 27 Update to appear in its proper location in the Revit Developer Centre at autodesk.com/developrevit, which nowadays points to a new location at www.autodesk.com/developer-network/platform-technologies/revit.
If you are in a hurry, you can grab it right now from
the direct REVIT_2019_SDK.msi
download link,
which is download.autodesk.com/us/revit-sdk/REVIT_2019_SDK.msi.
The resulting Revit 2019 SDK update installer file dated April 27, 2018, is 375521280 bytes in size.
I ran the installer and loaded the SDK solution SDKSamples
into Visual Studio.
The first compilation worked pretty well right out of the box.
It reported 186 projects succeeded, 0 failed, 0 errors and 41 warnings.
Almost all the warnings are related to the processor architecture mismatch:
These warnings can easily be suppressed using
my DisableMismatchWarning.exe
command line utility
to recursively disable architecture mismatch warnings.
After running the DisableMismatchWarning utility, the number of warnings is reduced from 41 to 5.
I will ignore the first three for now.
The last two are more serious, of course.
The missing reference to the RevitAPISteel.dll
.NET library assembly can be easily resolved by manually updating it to point to the existing DLL in the Revit executable folder:
That reduced the number of warning messages from 5 to 3, which, as said, I will ignore:
With the SDK samples compiling successfully, and the number of warnings reduced to a tolerable number, I next set up RvtSamples to load all the external commands.
First of all, I added the add-in manifest and the RvtSamples input text file to the project for easier access and modification:
Next, I updated the paths in both of them to point to my SDK samples folder.
The original input text file still refers to C:/Revit Copernicus SDK/Samples/.
I replaced the backslashes to forward slashes for simpler regular expression editing and updated the paths to point to my installation in C:/a/lib/revit/2019/SDK/Samples/.
To test that all the external commands listed in the text file are found, I temporarily toggled the testClassName
flag to true:
bool testClassName = true; // jeremy
With that flag enabled, a number of warnings are issued:
After some more twiddling, just the seven or eight VB problems remain, and I am satisfied:
I mustn't forget to toggle off the debugging flag again...
For your convenience, here is my freshly baked RvtSamples_2019_april_update.zip archive file.