├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json ├── tasks.json └── tasks.json.old ├── CodeAnalyzers.targets ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── README.md ├── Revit.Toolkit.sln ├── azure-pipelines-version.ps1 ├── azure-pipelines.yml ├── global.json ├── src ├── CodeCave.Revit.Toolkit.csproj ├── Decompiled │ ├── BuiltInCategory.cs │ ├── BuiltInParameter.cs │ ├── BuiltInParameterGroup.cs │ ├── DisplayUnitType.cs │ ├── Extensions │ │ ├── BuiltInCategoryExtensions.cs │ │ ├── BuiltInParameterGroupExtensions.cs │ │ ├── DisplayUnitTypeExtensions.cs │ │ ├── ParameterTypeExtensions.cs │ │ ├── UnitSymbolTypeExtensions.cs │ │ └── UnitTypeExtensions.cs │ ├── FlowDirectionType.cs │ ├── MEPSystemClassification.cs │ ├── ParameterType.cs │ ├── PipeFlowConfigurationType.cs │ ├── UnitGroup.cs │ ├── UnitSymbolType.cs │ └── UnitType.cs ├── Extensions │ └── RevitFileInfoExtensions.cs ├── OLE │ ├── OleDataReader.cs │ ├── RevitFileInfo.cs │ ├── RevitFileMap.cs │ └── Xml │ │ ├── Category.cs │ │ ├── DesignFile.cs │ │ ├── Family.cs │ │ ├── FamilyType.cs │ │ ├── Link.cs │ │ ├── ParameterList.cs │ │ ├── PartAtom.cs │ │ └── PartAtomParameter.cs ├── OmniClass │ ├── OmniClassTaxonomy.cs │ ├── OmniClassTaxonomyItem.cs │ ├── OmniClassTaxonomy_FoodService.txt │ └── OmniClassTaxonomy_Vanilla.txt ├── Parameters │ ├── Catalog │ │ ├── TypeCatalogFile.Parameter.cs │ │ ├── TypeCatalogFile.ParameterDefinition.cs │ │ ├── TypeCatalogFile.Type.cs │ │ └── TypeCatalogFile.cs │ ├── IDefinition.cs │ ├── IParameter.cs │ ├── IParameterWithValue.cs │ └── Shared │ │ ├── SharedParameterFile.CSV.cs │ │ ├── SharedParameterFile.Group.cs │ │ ├── SharedParameterFile.Meta.cs │ │ ├── SharedParameterFile.Parameter.cs │ │ ├── SharedParameterFile.ParameterDefinition.cs │ │ └── SharedParameterFile.cs ├── Resources │ └── Assembly.cs ├── Revit.Toolkit.csproj.DotSettings └── Thumbnails │ ├── DwgThumbnailExtractor.cs │ ├── RevitTumbnailExtractor.cs │ └── ThumbnailExtractor.cs └── tests ├── CodeCave.Revit.Toolkit.Tests.csproj ├── Resources ├── SharedParameterFiles │ ├── Invalid │ │ ├── AusHFG Revit Model SPF for v3.0.TXT │ │ ├── DuplicatesExample.txt │ │ ├── InvalidMetaExample.txt │ │ ├── OrphanParameterExample.txt │ │ ├── UnusedGroupExample.txt │ │ └── ФОП2017.txt │ └── Valid │ │ ├── FCSI_SharedParametersList_2011.txt │ │ ├── FCSI_SharedParametersList_2015.txt │ │ ├── FSSharedParam2011_UK.txt │ │ ├── IFC Shared Parameters.txt │ │ ├── IFSE_SharedParametersList_DEU_V07_1_2017.txt │ │ ├── IFSE_SharedParametersList_ENG_V07_1_2017.txt │ │ ├── IFSE_SharedParametersList_ESP_V07_1_2017.txt │ │ ├── IFSE_SharedParametersList_FRA_V07_1_2017.txt │ │ ├── IFSE_SharedParametersList_ITA_V07_1_2017.txt │ │ ├── IFSE_SharedParametersList_POR_V07_1_2017.txt │ │ ├── NBS_BIMObjectStandardParameters.txt │ │ ├── NBS_BIMObjectStandardParameters_BOS2.0.0.txt │ │ ├── OpenRFA Shared Parameters.txt │ │ ├── RMParams.txt │ │ ├── SimpleShared_1.txt │ │ ├── SimpleShared_2.txt │ │ ├── SimpleShared_3.txt │ │ └── SimpleShared_4.txt ├── Thumbnails │ └── Valid │ │ ├── 7-PS-66_R3.dwg │ │ ├── 7-PS-66_R3.png │ │ ├── A1ANG-3.dwg │ │ ├── A1ANG-3.png │ │ ├── U0000850_7-PS-66.DWG │ │ ├── U0000850_7-PS-66.png │ │ ├── qf_hatco_hdw-2bn_cat.png │ │ └── qf_hatco_hdw-2bn_cat.rfa └── TypeCatalogFile │ └── Valid │ ├── QF_Ambach_8AF20_8AF30_8ATUBO40_8ATUBO50_8ATUBO60_8ATUBO80_cat.txt │ ├── QF_Ambach_8EPUBE80_8EPUBO80_cat.txt │ ├── QF_Ambach_8GHUBG80_8GHUBE80_8GHUBO80_cat.txt │ └── iPhone6.txt ├── SharedParameterFileTests.cs ├── ThumbnailFixture.cs └── TypeCatalogFileTests.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscode/tasks.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/.vscode/tasks.json.old -------------------------------------------------------------------------------- /CodeAnalyzers.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/CodeAnalyzers.targets -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /Revit.Toolkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/Revit.Toolkit.sln -------------------------------------------------------------------------------- /azure-pipelines-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/azure-pipelines-version.ps1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/global.json -------------------------------------------------------------------------------- /src/CodeCave.Revit.Toolkit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/CodeCave.Revit.Toolkit.csproj -------------------------------------------------------------------------------- /src/Decompiled/BuiltInCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/BuiltInCategory.cs -------------------------------------------------------------------------------- /src/Decompiled/BuiltInParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/BuiltInParameter.cs -------------------------------------------------------------------------------- /src/Decompiled/BuiltInParameterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/BuiltInParameterGroup.cs -------------------------------------------------------------------------------- /src/Decompiled/DisplayUnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/DisplayUnitType.cs -------------------------------------------------------------------------------- /src/Decompiled/Extensions/BuiltInCategoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/Extensions/BuiltInCategoryExtensions.cs -------------------------------------------------------------------------------- /src/Decompiled/Extensions/BuiltInParameterGroupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/Extensions/BuiltInParameterGroupExtensions.cs -------------------------------------------------------------------------------- /src/Decompiled/Extensions/DisplayUnitTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/Extensions/DisplayUnitTypeExtensions.cs -------------------------------------------------------------------------------- /src/Decompiled/Extensions/ParameterTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/Extensions/ParameterTypeExtensions.cs -------------------------------------------------------------------------------- /src/Decompiled/Extensions/UnitSymbolTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/Extensions/UnitSymbolTypeExtensions.cs -------------------------------------------------------------------------------- /src/Decompiled/Extensions/UnitTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/Extensions/UnitTypeExtensions.cs -------------------------------------------------------------------------------- /src/Decompiled/FlowDirectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/FlowDirectionType.cs -------------------------------------------------------------------------------- /src/Decompiled/MEPSystemClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/MEPSystemClassification.cs -------------------------------------------------------------------------------- /src/Decompiled/ParameterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/ParameterType.cs -------------------------------------------------------------------------------- /src/Decompiled/PipeFlowConfigurationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/PipeFlowConfigurationType.cs -------------------------------------------------------------------------------- /src/Decompiled/UnitGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/UnitGroup.cs -------------------------------------------------------------------------------- /src/Decompiled/UnitSymbolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/UnitSymbolType.cs -------------------------------------------------------------------------------- /src/Decompiled/UnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Decompiled/UnitType.cs -------------------------------------------------------------------------------- /src/Extensions/RevitFileInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Extensions/RevitFileInfoExtensions.cs -------------------------------------------------------------------------------- /src/OLE/OleDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/OleDataReader.cs -------------------------------------------------------------------------------- /src/OLE/RevitFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/RevitFileInfo.cs -------------------------------------------------------------------------------- /src/OLE/RevitFileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/RevitFileMap.cs -------------------------------------------------------------------------------- /src/OLE/Xml/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/Category.cs -------------------------------------------------------------------------------- /src/OLE/Xml/DesignFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/DesignFile.cs -------------------------------------------------------------------------------- /src/OLE/Xml/Family.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/Family.cs -------------------------------------------------------------------------------- /src/OLE/Xml/FamilyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/FamilyType.cs -------------------------------------------------------------------------------- /src/OLE/Xml/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/Link.cs -------------------------------------------------------------------------------- /src/OLE/Xml/ParameterList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/ParameterList.cs -------------------------------------------------------------------------------- /src/OLE/Xml/PartAtom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/PartAtom.cs -------------------------------------------------------------------------------- /src/OLE/Xml/PartAtomParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OLE/Xml/PartAtomParameter.cs -------------------------------------------------------------------------------- /src/OmniClass/OmniClassTaxonomy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OmniClass/OmniClassTaxonomy.cs -------------------------------------------------------------------------------- /src/OmniClass/OmniClassTaxonomyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OmniClass/OmniClassTaxonomyItem.cs -------------------------------------------------------------------------------- /src/OmniClass/OmniClassTaxonomy_FoodService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OmniClass/OmniClassTaxonomy_FoodService.txt -------------------------------------------------------------------------------- /src/OmniClass/OmniClassTaxonomy_Vanilla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/OmniClass/OmniClassTaxonomy_Vanilla.txt -------------------------------------------------------------------------------- /src/Parameters/Catalog/TypeCatalogFile.Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Catalog/TypeCatalogFile.Parameter.cs -------------------------------------------------------------------------------- /src/Parameters/Catalog/TypeCatalogFile.ParameterDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Catalog/TypeCatalogFile.ParameterDefinition.cs -------------------------------------------------------------------------------- /src/Parameters/Catalog/TypeCatalogFile.Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Catalog/TypeCatalogFile.Type.cs -------------------------------------------------------------------------------- /src/Parameters/Catalog/TypeCatalogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Catalog/TypeCatalogFile.cs -------------------------------------------------------------------------------- /src/Parameters/IDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/IDefinition.cs -------------------------------------------------------------------------------- /src/Parameters/IParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/IParameter.cs -------------------------------------------------------------------------------- /src/Parameters/IParameterWithValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/IParameterWithValue.cs -------------------------------------------------------------------------------- /src/Parameters/Shared/SharedParameterFile.CSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Shared/SharedParameterFile.CSV.cs -------------------------------------------------------------------------------- /src/Parameters/Shared/SharedParameterFile.Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Shared/SharedParameterFile.Group.cs -------------------------------------------------------------------------------- /src/Parameters/Shared/SharedParameterFile.Meta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Shared/SharedParameterFile.Meta.cs -------------------------------------------------------------------------------- /src/Parameters/Shared/SharedParameterFile.Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Shared/SharedParameterFile.Parameter.cs -------------------------------------------------------------------------------- /src/Parameters/Shared/SharedParameterFile.ParameterDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Shared/SharedParameterFile.ParameterDefinition.cs -------------------------------------------------------------------------------- /src/Parameters/Shared/SharedParameterFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Parameters/Shared/SharedParameterFile.cs -------------------------------------------------------------------------------- /src/Resources/Assembly.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly:InternalsVisibleTo("CodeCave.Revit.Toolkit.Tests")] -------------------------------------------------------------------------------- /src/Revit.Toolkit.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Revit.Toolkit.csproj.DotSettings -------------------------------------------------------------------------------- /src/Thumbnails/DwgThumbnailExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Thumbnails/DwgThumbnailExtractor.cs -------------------------------------------------------------------------------- /src/Thumbnails/RevitTumbnailExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Thumbnails/RevitTumbnailExtractor.cs -------------------------------------------------------------------------------- /src/Thumbnails/ThumbnailExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/src/Thumbnails/ThumbnailExtractor.cs -------------------------------------------------------------------------------- /tests/CodeCave.Revit.Toolkit.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/CodeCave.Revit.Toolkit.Tests.csproj -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Invalid/AusHFG Revit Model SPF for v3.0.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Invalid/AusHFG Revit Model SPF for v3.0.TXT -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Invalid/DuplicatesExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Invalid/DuplicatesExample.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Invalid/InvalidMetaExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Invalid/InvalidMetaExample.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Invalid/OrphanParameterExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Invalid/OrphanParameterExample.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Invalid/UnusedGroupExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Invalid/UnusedGroupExample.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Invalid/ФОП2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Invalid/ФОП2017.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/FCSI_SharedParametersList_2011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/FCSI_SharedParametersList_2011.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/FCSI_SharedParametersList_2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/FCSI_SharedParametersList_2015.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/FSSharedParam2011_UK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/FSSharedParam2011_UK.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/IFC Shared Parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/IFC Shared Parameters.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_DEU_V07_1_2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_DEU_V07_1_2017.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_ENG_V07_1_2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_ENG_V07_1_2017.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_ESP_V07_1_2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_ESP_V07_1_2017.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_FRA_V07_1_2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_FRA_V07_1_2017.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_ITA_V07_1_2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_ITA_V07_1_2017.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_POR_V07_1_2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/IFSE_SharedParametersList_POR_V07_1_2017.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/NBS_BIMObjectStandardParameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/NBS_BIMObjectStandardParameters.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/NBS_BIMObjectStandardParameters_BOS2.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/NBS_BIMObjectStandardParameters_BOS2.0.0.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/OpenRFA Shared Parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/OpenRFA Shared Parameters.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/RMParams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/RMParams.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/SimpleShared_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/SimpleShared_1.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/SimpleShared_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/SimpleShared_2.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/SimpleShared_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/SimpleShared_3.txt -------------------------------------------------------------------------------- /tests/Resources/SharedParameterFiles/Valid/SimpleShared_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/SharedParameterFiles/Valid/SimpleShared_4.txt -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/7-PS-66_R3.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/7-PS-66_R3.dwg -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/7-PS-66_R3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/7-PS-66_R3.png -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/A1ANG-3.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/A1ANG-3.dwg -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/A1ANG-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/A1ANG-3.png -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/U0000850_7-PS-66.DWG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/U0000850_7-PS-66.DWG -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/U0000850_7-PS-66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/U0000850_7-PS-66.png -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/qf_hatco_hdw-2bn_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/qf_hatco_hdw-2bn_cat.png -------------------------------------------------------------------------------- /tests/Resources/Thumbnails/Valid/qf_hatco_hdw-2bn_cat.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/Thumbnails/Valid/qf_hatco_hdw-2bn_cat.rfa -------------------------------------------------------------------------------- /tests/Resources/TypeCatalogFile/Valid/QF_Ambach_8AF20_8AF30_8ATUBO40_8ATUBO50_8ATUBO60_8ATUBO80_cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/TypeCatalogFile/Valid/QF_Ambach_8AF20_8AF30_8ATUBO40_8ATUBO50_8ATUBO60_8ATUBO80_cat.txt -------------------------------------------------------------------------------- /tests/Resources/TypeCatalogFile/Valid/QF_Ambach_8EPUBE80_8EPUBO80_cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/TypeCatalogFile/Valid/QF_Ambach_8EPUBE80_8EPUBO80_cat.txt -------------------------------------------------------------------------------- /tests/Resources/TypeCatalogFile/Valid/QF_Ambach_8GHUBG80_8GHUBE80_8GHUBO80_cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/TypeCatalogFile/Valid/QF_Ambach_8GHUBG80_8GHUBE80_8GHUBO80_cat.txt -------------------------------------------------------------------------------- /tests/Resources/TypeCatalogFile/Valid/iPhone6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/Resources/TypeCatalogFile/Valid/iPhone6.txt -------------------------------------------------------------------------------- /tests/SharedParameterFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/SharedParameterFileTests.cs -------------------------------------------------------------------------------- /tests/ThumbnailFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/ThumbnailFixture.cs -------------------------------------------------------------------------------- /tests/TypeCatalogFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeCavePro/revitless-toolkit/HEAD/tests/TypeCatalogFileTests.cs --------------------------------------------------------------------------------