├── .gitignore ├── LICENSE ├── License.rtf ├── README.md ├── RevitLookup.bundle ├── Contents │ ├── 2017 │ │ ├── RevitLookup.addin │ │ └── RevitLookup.dll │ ├── 2018 │ │ ├── RevitLookup.addin │ │ └── RevitLookup.dll │ ├── 2019 │ │ ├── RevitLookup.addin │ │ └── RevitLookup.dll │ ├── 2020 │ │ ├── RevitLookup.addin │ │ └── RevitLookup.dll │ ├── 2021 │ │ ├── RevitLookup.addin │ │ └── RevitLookup.dll │ └── 2022 │ │ ├── RevitLookup.addin │ │ └── RevitLookup.dll └── PackageContents.xml ├── RevitLookup.iss ├── icon.ico ├── icon164.bmp └── icon55.bmp /.gitignore: -------------------------------------------------------------------------------- 1 | # Executables 2 | *.exe 3 | *.zip 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/LICENSE -------------------------------------------------------------------------------- /License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/License.rtf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/README.md -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2017/RevitLookup.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2017/RevitLookup.addin -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2017/RevitLookup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2017/RevitLookup.dll -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2018/RevitLookup.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2018/RevitLookup.addin -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2018/RevitLookup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2018/RevitLookup.dll -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2019/RevitLookup.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2019/RevitLookup.addin -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2019/RevitLookup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2019/RevitLookup.dll -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2020/RevitLookup.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2020/RevitLookup.addin -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2020/RevitLookup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2020/RevitLookup.dll -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2021/RevitLookup.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2021/RevitLookup.addin -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2021/RevitLookup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2021/RevitLookup.dll -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2022/RevitLookup.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2022/RevitLookup.addin -------------------------------------------------------------------------------- /RevitLookup.bundle/Contents/2022/RevitLookup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/Contents/2022/RevitLookup.dll -------------------------------------------------------------------------------- /RevitLookup.bundle/PackageContents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.bundle/PackageContents.xml -------------------------------------------------------------------------------- /RevitLookup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/RevitLookup.iss -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/icon.ico -------------------------------------------------------------------------------- /icon164.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/icon164.bmp -------------------------------------------------------------------------------- /icon55.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricaun/RevitLookup.Installation/HEAD/icon55.bmp --------------------------------------------------------------------------------