├── .gitattributes ├── Images └── SmartCheck_Main.JPG ├── LICENSE ├── README.md └── SmartCheck ├── .vs ├── SmartCheck │ └── v16 │ │ └── .suo └── UniversoBIM_Check │ └── v16 │ └── .suo ├── ChangeLog.txt ├── Entity ├── App.cs ├── Check.cs ├── Item.cs ├── Main.cs ├── Tools.cs └── UbParameter.cs ├── Forms ├── frmAbout.Designer.cs ├── frmAbout.cs ├── frmAbout.resx ├── frmCheck.Designer.cs ├── frmCheck.cs └── frmCheck.resx ├── Properties └── AssemblyInfo.cs ├── Resource1.Designer.cs ├── Resource1.resx ├── Resources ├── Excel32.png ├── UniBim32.png └── UniBim_logo_64.png ├── SmartCheck.addin ├── SmartCheck.csproj ├── SmartCheck.csproj.user ├── SmartCheck.sln ├── bin ├── Debug │ ├── APIDBAPI.dll │ ├── APIInterop.dll │ ├── APIUIAPI.dll │ ├── AdWindows.dll │ ├── AddInManager.dll │ ├── AnalysisAppsDBAPI.dll │ ├── ArrayElemsDBAPI.dll │ ├── AssemblyDBAPI.dll │ ├── BuildingSystemsDBAPI.dll │ ├── BuildingSystemsUIAPI.dll │ ├── ChangeLog.txt │ ├── CurtainGridFamilyDBAPI.dll │ ├── DBManagedServices.dll │ ├── DPartDBAPI.dll │ ├── DesktopMFCAPI.dll │ ├── DetailDBAPI.dll │ ├── DetailUIAPI.dll │ ├── ElementGroupDBAPI.dll │ ├── EnergyAnalysisDBAPI.dll │ ├── EnergyAnalysisUtilitiesAPI.dll │ ├── EssentialsDBAPI.dll │ ├── EssentialsUIAPI.dll │ ├── FamilyDBAPI.dll │ ├── GeomUtilAPI.dll │ ├── GraphicsAPI.dll │ ├── HostObjDBAPI.dll │ ├── InterfaceAPI.dll │ ├── InterfaceUtilAPI.dll │ ├── ManagedMC3.dll │ ├── MassingDBAPI.dll │ ├── NumberingDBAPI.dll │ ├── PersistenceDBAPI.dll │ ├── PointCloudAccessAPI.dll │ ├── RebarDBAPI.dll │ ├── RevitAPI.dll │ ├── RevitAPI.xml │ ├── RevitAPIFoundation.dll │ ├── RevitAPIUI.dll │ ├── RevitAPIUI.xml │ ├── RevitAddInUtility.dll │ ├── RevitDBAPI.dll │ ├── RevitMFCAPI.dll │ ├── RevitUIAPI.dll │ ├── RoomAreaPlanDBAPI.dll │ ├── SculptingDBAPI.dll │ ├── SiteDBAPI.dll │ ├── SmartCheck.addin │ ├── SmartCheck.dll │ ├── SmartCheck.pdb │ ├── StairRampDBAPI.dll │ ├── StructuralAnalysisDBAPI.dll │ ├── StructuralDBAPI.dll │ ├── UIFramework.dll │ ├── UIFrameworkServices.dll │ ├── UtilityAPI.dll │ ├── Xceed.Wpf.AvalonDock.dll │ ├── cs-CZ │ │ └── AdWindows.resources.dll │ ├── de-DE │ │ └── AdWindows.resources.dll │ ├── en-GB │ │ └── AdWindows.resources.dll │ ├── en-US │ │ └── AdWindows.resources.dll │ ├── es-ES │ │ └── AdWindows.resources.dll │ ├── fr-FR │ │ └── AdWindows.resources.dll │ ├── it-IT │ │ └── AdWindows.resources.dll │ ├── ja-JP │ │ └── AdWindows.resources.dll │ ├── ko-KR │ │ └── AdWindows.resources.dll │ ├── pl-PL │ │ └── AdWindows.resources.dll │ ├── pt-BR │ │ └── AdWindows.resources.dll │ ├── ru-RU │ │ └── AdWindows.resources.dll │ ├── styles.css │ ├── zh-CN │ │ └── AdWindows.resources.dll │ └── zh-TW │ │ └── AdWindows.resources.dll └── Release │ ├── RevitAPI.dll │ ├── RevitAPIUI.dll │ ├── SmartCheck.addin │ ├── SmartCheck.dll │ ├── SmartCheck.pdb │ └── styles.css ├── obj ├── Debug │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── AddinTipo.Resource1.resources │ ├── AddinTipo.csproj.CopyComplete │ ├── AddinTipo.csproj.CoreCompileInputs.cache │ ├── AddinTipo.csproj.FileListAbsolute.txt │ ├── AddinTipo.csproj.GenerateResource.cache │ ├── AddinTipo.csprojAssemblyReference.cache │ ├── AddinTipo.dll │ ├── AddinTipo.g.resources │ ├── AddinTipo.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SmartCheck.Resource1.resources │ ├── SmartCheck.csproj.CopyComplete │ ├── SmartCheck.csproj.CoreCompileInputs.cache │ ├── SmartCheck.csproj.FileListAbsolute.txt │ ├── SmartCheck.csproj.GenerateResource.cache │ ├── SmartCheck.csprojAssemblyReference.cache │ ├── SmartCheck.dll │ ├── SmartCheck.frmAbout.resources │ ├── SmartCheck.frmCheck.resources │ ├── SmartCheck.g.resources │ ├── SmartCheck.pdb │ ├── TempPE │ │ └── Resource1.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── UniversoBIM_Check.csproj.CopyComplete │ ├── UniversoBIM_Check.csproj.CoreCompileInputs.cache │ ├── UniversoBIM_Check.csproj.FileListAbsolute.txt │ ├── UniversoBIM_Check.csproj.GenerateResource.cache │ └── UniversoBIM_Check.csprojAssemblyReference.cache └── Release │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── SmartCheck.Resource1.resources │ ├── SmartCheck.csproj.CopyComplete │ ├── SmartCheck.csproj.CoreCompileInputs.cache │ ├── SmartCheck.csproj.FileListAbsolute.txt │ ├── SmartCheck.csproj.GenerateResource.cache │ ├── SmartCheck.csprojAssemblyReference.cache │ ├── SmartCheck.dll │ ├── SmartCheck.frmAbout.resources │ ├── SmartCheck.frmCheck.resources │ ├── SmartCheck.g.resources │ ├── SmartCheck.pdb │ └── TempPE │ └── Resource1.Designer.cs.dll └── styles.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/.gitattributes -------------------------------------------------------------------------------- /Images/SmartCheck_Main.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/Images/SmartCheck_Main.JPG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/README.md -------------------------------------------------------------------------------- /SmartCheck/.vs/SmartCheck/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/.vs/SmartCheck/v16/.suo -------------------------------------------------------------------------------- /SmartCheck/.vs/UniversoBIM_Check/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/.vs/UniversoBIM_Check/v16/.suo -------------------------------------------------------------------------------- /SmartCheck/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/ChangeLog.txt -------------------------------------------------------------------------------- /SmartCheck/Entity/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Entity/App.cs -------------------------------------------------------------------------------- /SmartCheck/Entity/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Entity/Check.cs -------------------------------------------------------------------------------- /SmartCheck/Entity/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Entity/Item.cs -------------------------------------------------------------------------------- /SmartCheck/Entity/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Entity/Main.cs -------------------------------------------------------------------------------- /SmartCheck/Entity/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Entity/Tools.cs -------------------------------------------------------------------------------- /SmartCheck/Entity/UbParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Entity/UbParameter.cs -------------------------------------------------------------------------------- /SmartCheck/Forms/frmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Forms/frmAbout.Designer.cs -------------------------------------------------------------------------------- /SmartCheck/Forms/frmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Forms/frmAbout.cs -------------------------------------------------------------------------------- /SmartCheck/Forms/frmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Forms/frmAbout.resx -------------------------------------------------------------------------------- /SmartCheck/Forms/frmCheck.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Forms/frmCheck.Designer.cs -------------------------------------------------------------------------------- /SmartCheck/Forms/frmCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Forms/frmCheck.cs -------------------------------------------------------------------------------- /SmartCheck/Forms/frmCheck.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Forms/frmCheck.resx -------------------------------------------------------------------------------- /SmartCheck/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartCheck/Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Resource1.Designer.cs -------------------------------------------------------------------------------- /SmartCheck/Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Resource1.resx -------------------------------------------------------------------------------- /SmartCheck/Resources/Excel32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Resources/Excel32.png -------------------------------------------------------------------------------- /SmartCheck/Resources/UniBim32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Resources/UniBim32.png -------------------------------------------------------------------------------- /SmartCheck/Resources/UniBim_logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/Resources/UniBim_logo_64.png -------------------------------------------------------------------------------- /SmartCheck/SmartCheck.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/SmartCheck.addin -------------------------------------------------------------------------------- /SmartCheck/SmartCheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/SmartCheck.csproj -------------------------------------------------------------------------------- /SmartCheck/SmartCheck.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/SmartCheck.csproj.user -------------------------------------------------------------------------------- /SmartCheck/SmartCheck.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/SmartCheck.sln -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/APIDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/APIDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/APIInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/APIInterop.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/APIUIAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/APIUIAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/AdWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/AdWindows.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/AddInManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/AddInManager.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/AnalysisAppsDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/AnalysisAppsDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/ArrayElemsDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/ArrayElemsDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/AssemblyDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/AssemblyDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/BuildingSystemsDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/BuildingSystemsDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/BuildingSystemsUIAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/BuildingSystemsUIAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/ChangeLog.txt -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/CurtainGridFamilyDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/CurtainGridFamilyDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/DBManagedServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/DBManagedServices.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/DPartDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/DPartDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/DesktopMFCAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/DesktopMFCAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/DetailDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/DetailDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/DetailUIAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/DetailUIAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/ElementGroupDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/ElementGroupDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/EnergyAnalysisDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/EnergyAnalysisDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/EnergyAnalysisUtilitiesAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/EnergyAnalysisUtilitiesAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/EssentialsDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/EssentialsDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/EssentialsUIAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/EssentialsUIAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/FamilyDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/FamilyDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/GeomUtilAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/GeomUtilAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/GraphicsAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/GraphicsAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/HostObjDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/HostObjDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/InterfaceAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/InterfaceAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/InterfaceUtilAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/InterfaceUtilAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/ManagedMC3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/ManagedMC3.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/MassingDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/MassingDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/NumberingDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/NumberingDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/PersistenceDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/PersistenceDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/PointCloudAccessAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/PointCloudAccessAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RebarDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RebarDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitAPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitAPI.xml -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitAPIFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitAPIFoundation.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitAPIUI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitAPIUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitAPIUI.xml -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitAddInUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitAddInUtility.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitMFCAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitMFCAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RevitUIAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RevitUIAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/RoomAreaPlanDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/RoomAreaPlanDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/SculptingDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/SculptingDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/SiteDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/SiteDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/SmartCheck.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/SmartCheck.addin -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/SmartCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/SmartCheck.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/SmartCheck.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/SmartCheck.pdb -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/StairRampDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/StairRampDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/StructuralAnalysisDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/StructuralAnalysisDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/StructuralDBAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/StructuralDBAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/UIFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/UIFramework.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/UIFrameworkServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/UIFrameworkServices.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/UtilityAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/UtilityAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/Xceed.Wpf.AvalonDock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/Xceed.Wpf.AvalonDock.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/cs-CZ/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/cs-CZ/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/de-DE/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/de-DE/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/en-GB/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/en-GB/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/en-US/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/en-US/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/es-ES/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/es-ES/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/fr-FR/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/fr-FR/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/it-IT/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/it-IT/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/ja-JP/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/ja-JP/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/ko-KR/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/ko-KR/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/pl-PL/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/pl-PL/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/pt-BR/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/pt-BR/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/ru-RU/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/ru-RU/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/styles.css -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/zh-CN/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/zh-CN/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Debug/zh-TW/AdWindows.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Debug/zh-TW/AdWindows.resources.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Release/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Release/RevitAPI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Release/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Release/RevitAPIUI.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Release/SmartCheck.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Release/SmartCheck.addin -------------------------------------------------------------------------------- /SmartCheck/bin/Release/SmartCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Release/SmartCheck.dll -------------------------------------------------------------------------------- /SmartCheck/bin/Release/SmartCheck.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Release/SmartCheck.pdb -------------------------------------------------------------------------------- /SmartCheck/bin/Release/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/bin/Release/styles.css -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.Resource1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/AddinTipo.Resource1.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2da2f71f1462c1a39f32fad439e2a5f9882ec59c 2 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/AddinTipo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/AddinTipo.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/AddinTipo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/AddinTipo.dll -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/AddinTipo.g.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/AddinTipo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/AddinTipo.pdb -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.Resource1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.Resource1.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e49112f52769955a324f603b50f9eb59a9fb4a0f 2 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.dll -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.frmAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.frmAbout.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.frmCheck.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.frmCheck.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.g.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/SmartCheck.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/SmartCheck.pdb -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/TempPE/Resource1.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/TempPE/Resource1.Designer.cs.dll -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/UniversoBIM_Check.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/UniversoBIM_Check.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1d0fa5003fc6e01e0acc9eedbdf833fa7b37ce5c 2 | -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/UniversoBIM_Check.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/UniversoBIM_Check.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/UniversoBIM_Check.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/UniversoBIM_Check.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Debug/UniversoBIM_Check.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Debug/UniversoBIM_Check.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.Resource1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.Resource1.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e41bf041a1b9ce148246a4100cd343a4acdd356a 2 | -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.dll -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.frmAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.frmAbout.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.frmCheck.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.frmCheck.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.g.resources -------------------------------------------------------------------------------- /SmartCheck/obj/Release/SmartCheck.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/SmartCheck.pdb -------------------------------------------------------------------------------- /SmartCheck/obj/Release/TempPE/Resource1.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/obj/Release/TempPE/Resource1.Designer.cs.dll -------------------------------------------------------------------------------- /SmartCheck/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorovt/SmartCheck/HEAD/SmartCheck/styles.css --------------------------------------------------------------------------------