├── .gitattributes ├── .gitignore ├── COPYING ├── COPYING.LESSER ├── README.md ├── SimpleRevit.sln ├── SimpleRevit ├── AppBase.cs ├── ButtonParam.cs ├── CmdAttribute.cs ├── CmdBase.cs ├── CmdBaseMvvm.cs ├── Extensions.cs ├── OrderAttribute.cs ├── SimpleRevit.csproj └── SimpleRevitViewModel.cs ├── Tests.Tests ├── CommandAsyncTest.cs └── Tests.Tests.csproj └── Tests ├── Application.cs ├── Commands ├── CommandAsync.cs ├── CommandEasy.cs └── CommandNormal.cs ├── Core └── RevitApi.cs ├── Resources └── Icons │ ├── RibbonIcon16.png │ └── RibbonIcon32.png ├── Tests.addin ├── Tests.csproj ├── ViewModels └── TestsViewModel.cs └── Views ├── TestsView.xaml └── TestsView.xaml.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/README.md -------------------------------------------------------------------------------- /SimpleRevit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit.sln -------------------------------------------------------------------------------- /SimpleRevit/AppBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/AppBase.cs -------------------------------------------------------------------------------- /SimpleRevit/ButtonParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/ButtonParam.cs -------------------------------------------------------------------------------- /SimpleRevit/CmdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/CmdAttribute.cs -------------------------------------------------------------------------------- /SimpleRevit/CmdBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/CmdBase.cs -------------------------------------------------------------------------------- /SimpleRevit/CmdBaseMvvm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/CmdBaseMvvm.cs -------------------------------------------------------------------------------- /SimpleRevit/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/Extensions.cs -------------------------------------------------------------------------------- /SimpleRevit/OrderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/OrderAttribute.cs -------------------------------------------------------------------------------- /SimpleRevit/SimpleRevit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/SimpleRevit.csproj -------------------------------------------------------------------------------- /SimpleRevit/SimpleRevitViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/SimpleRevit/SimpleRevitViewModel.cs -------------------------------------------------------------------------------- /Tests.Tests/CommandAsyncTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests.Tests/CommandAsyncTest.cs -------------------------------------------------------------------------------- /Tests.Tests/Tests.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests.Tests/Tests.Tests.csproj -------------------------------------------------------------------------------- /Tests/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Application.cs -------------------------------------------------------------------------------- /Tests/Commands/CommandAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Commands/CommandAsync.cs -------------------------------------------------------------------------------- /Tests/Commands/CommandEasy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Commands/CommandEasy.cs -------------------------------------------------------------------------------- /Tests/Commands/CommandNormal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Commands/CommandNormal.cs -------------------------------------------------------------------------------- /Tests/Core/RevitApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Core/RevitApi.cs -------------------------------------------------------------------------------- /Tests/Resources/Icons/RibbonIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Resources/Icons/RibbonIcon16.png -------------------------------------------------------------------------------- /Tests/Resources/Icons/RibbonIcon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Resources/Icons/RibbonIcon32.png -------------------------------------------------------------------------------- /Tests/Tests.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Tests.addin -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /Tests/ViewModels/TestsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/ViewModels/TestsViewModel.cs -------------------------------------------------------------------------------- /Tests/Views/TestsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Views/TestsView.xaml -------------------------------------------------------------------------------- /Tests/Views/TestsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ted-Jin-Lab/SimpleRevit/HEAD/Tests/Views/TestsView.xaml.cs --------------------------------------------------------------------------------