Skip to content

webdada/HOK-Revit-Addins

 
 

Repository files navigation

HOK-Revit-Addins 2019.0.0.X

Code Signing

Code signing is an optional process that developers can choose to enable when building this repo. Autodesk strongly recommends that all Revit Plugins be signed with a code signing certificate, authenticating the plugin and adding its creator to the list of certified developers on users computer. This prevents a pop-up window from appearing every time user starts Revit, and tries to load a plugin from an unknown developer. Since HOK uses domain based certificates, if you are a developer for HOK, you would have (or can request to have it added by the IT) a certificate called "Code Signing DTM" installed on your machine. If that's the case simply comment out this line of code in the *.csproj file:

<Exec Command="&quot;C:\Program Files (x86)\Windows Kits\10\bin\10.0.17134.0\x64\signtool.exe&quot; sign /c &quot;Code Signing - DTM&quot; /v &quot;$(TargetPath)&quot;" />

However, if you are one of the Open Source users of these tools, and want to use a specific PFX file located on your drive, and don't want to share your password with everyone use this code instead:

<Exec Command="&quot;C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x86\signtool.exe&quot; sign /f &quot;$(SolutionDir)..\_cert\archilabCertificate.pfx&quot; /p &quot;$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\HOK', 'certificatePassword', null, RegistryView.Registry64, RegistryView.Registry32))&quot; /t http://timestamp.comodoca.com/authenticode &quot;$(TargetPath)&quot;" />

For the above:

  • please make sure to replace the path to version of signtool.exe that you have available. These vary based on .NET version installed on your machine.
  • please make sure to replace the PFX file name to match one on your machine.
  • if you don't want to expose your password please create a new Registry key called "certificatePassword" under "HKEY_LOCAL_MACHINE\SOFTWARE\HOK" and store your password there. The above bit of code will make sure to read in at runtime.
  • potentially, depending on who's the provider of your certificate you might want to replace the path to authentication server.
  • last, but not least, please make sure to PLACE a copy of your certifacte in the roof folder of this repo under _cert folder. It will be ignored by the .gitignore so no worries about it getting published.

Settings

Most of the tools in this repository have a reference to HOK.Core. This is because most of these tools use some utilities from that DLL. One of these utilities is a HOK Feedback tool that can be easily embedded into any other tool via a button. This tool allows users to post an issue directly to GitHub via a proxy user and a special access token. In order to make that tool work for anyone, anywhere, without distributing other people's tokens and repo info, there is a Settings.json file embedded into the Resources in HOK.Core.dll. Here's the contents schema:

{
  "FeedbackToken": "<access token>",
  "FeedbackPath": "/repos/<user>/<repo name>/",
  "ModelReportingServiceEndpoint": "<reporting server endpoint>",
  "FileOnOpeningFmeUserId": "<fme user id>",
  "FileOnOpeningFmePassword": "<fme password>",
  "FileOnOpeningFmeHost": "<fme endpoint>",
  "FileOnOpeningFmePort": <port number>,
  "FileOnOpeningFmeClientId": "<fme client id>"
}
  • FeedbackToken - this is a token that you can obtain from GitHub to allow remote access to a repository. Since the purpose of this tool is to create GitHub issues on our behalf, we need an access token from authorized user, to login as that user and create a new issue. Replace this with a valid access token.
  • FeedbackPath - this is a url address to GitHub repository that you want to post issues to. In our case the address is /repos/HOKGroup/MissionControl_Issues/. Please not the /repos/ and / at the end of the address. Make sure to replace the content of <> with a valid name, and make sure that access token is valid to grant user access to the repo.

Actual values can be found here: HOK Teams

Links to release notes

  1. On Opening Monitor: Tool Page and Release notes.
  2. Mission Control: Tool Page and Release notes.
  3. HOK Core: Tool Page and Release notes.
  4. Beta Installer: Tool Page and Release notes.
  5. Addins Installer: Tool Page and Release notes.
  6. Element Mover: Tool Page and Release notes.
  7. Mass Tools: Tool Page and Release notes.
  8. Move Backup: Tool Page and Release notes.

Tips

  • Always run Visual Studio in Administrator mode. Otherwise it's possible that post build events will fail.
  • About

    This repository will include all documentation files and source codes for HOK Revit Addins

    Resources

    License

    MIT, Unknown licenses found

    Licenses found

    MIT
    LICENSE
    Unknown
    LICENSE.md

    Stars

    Watchers

    Forks

    Packages

    No packages published

    Languages

    • C# 86.4%
    • Visual Basic .NET 8.3%
    • PowerShell 3.9%
    • Rich Text Format 1.4%