├── .gitignore ├── .paket └── paket.bootstrapper.exe ├── README.md ├── assemblyinfo.template.xml ├── bind.sh ├── csproject.template.xml ├── linker.template.cs ├── nuspec.template.xml ├── packages.template.xml ├── paket.dependencies ├── paket.lock ├── pods └── empty.txt ├── podspec.sample.json ├── podspec.sample1.json └── xcode.template ├── .DS_Store ├── EmptyProject.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── alex.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcshareddata │ └── xcschemes │ └── EmptyProject.xcscheme ├── EmptyProject ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── .DS_Store │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── Podfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/README.md -------------------------------------------------------------------------------- /assemblyinfo.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/assemblyinfo.template.xml -------------------------------------------------------------------------------- /bind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/bind.sh -------------------------------------------------------------------------------- /csproject.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/csproject.template.xml -------------------------------------------------------------------------------- /linker.template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/linker.template.cs -------------------------------------------------------------------------------- /nuspec.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/nuspec.template.xml -------------------------------------------------------------------------------- /packages.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/packages.template.xml -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/paket.lock -------------------------------------------------------------------------------- /pods/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /podspec.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/podspec.sample.json -------------------------------------------------------------------------------- /podspec.sample1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/podspec.sample1.json -------------------------------------------------------------------------------- /xcode.template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/.DS_Store -------------------------------------------------------------------------------- /xcode.template/EmptyProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode.template/EmptyProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /xcode.template/EmptyProject.xcodeproj/project.xcworkspace/xcuserdata/alex.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject.xcodeproj/project.xcworkspace/xcuserdata/alex.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /xcode.template/EmptyProject.xcodeproj/xcshareddata/xcschemes/EmptyProject.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject.xcodeproj/xcshareddata/xcschemes/EmptyProject.xcscheme -------------------------------------------------------------------------------- /xcode.template/EmptyProject/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/.DS_Store -------------------------------------------------------------------------------- /xcode.template/EmptyProject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/AppDelegate.h -------------------------------------------------------------------------------- /xcode.template/EmptyProject/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/AppDelegate.m -------------------------------------------------------------------------------- /xcode.template/EmptyProject/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /xcode.template/EmptyProject/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /xcode.template/EmptyProject/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /xcode.template/EmptyProject/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /xcode.template/EmptyProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/Info.plist -------------------------------------------------------------------------------- /xcode.template/EmptyProject/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/ViewController.h -------------------------------------------------------------------------------- /xcode.template/EmptyProject/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/ViewController.m -------------------------------------------------------------------------------- /xcode.template/EmptyProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/EmptyProject/main.m -------------------------------------------------------------------------------- /xcode.template/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexsorokoletov/objc-automatic/HEAD/xcode.template/Podfile --------------------------------------------------------------------------------