├── .gitignore ├── LICENSE ├── README.md ├── SharpElevator.sln └── SharpElevator ├── 201ef99a-7fa0-444c-9399-19ba84f12a1a_1.0.cs ├── App.config ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SharpElevator.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/README.md -------------------------------------------------------------------------------- /SharpElevator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator.sln -------------------------------------------------------------------------------- /SharpElevator/201ef99a-7fa0-444c-9399-19ba84f12a1a_1.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/201ef99a-7fa0-444c-9399-19ba84f12a1a_1.0.cs -------------------------------------------------------------------------------- /SharpElevator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/App.config -------------------------------------------------------------------------------- /SharpElevator/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/FodyWeavers.xml -------------------------------------------------------------------------------- /SharpElevator/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/FodyWeavers.xsd -------------------------------------------------------------------------------- /SharpElevator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/Program.cs -------------------------------------------------------------------------------- /SharpElevator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpElevator/SharpElevator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/SharpElevator.csproj -------------------------------------------------------------------------------- /SharpElevator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eladshamir/SharpElevator/HEAD/SharpElevator/packages.config --------------------------------------------------------------------------------