├── .gitattributes ├── .gitignore ├── IFluentInterface.nuspec ├── LICENSE ├── README.md ├── images ├── clean-intellisense.png ├── full-intellisense.png ├── icon-32.png └── icon-48.png └── readme.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /IFluentInterface.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/IFluentInterface.nuspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/README.md -------------------------------------------------------------------------------- /images/clean-intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/images/clean-intellisense.png -------------------------------------------------------------------------------- /images/full-intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/images/full-intellisense.png -------------------------------------------------------------------------------- /images/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/images/icon-32.png -------------------------------------------------------------------------------- /images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/images/icon-48.png -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzu/IFluentInterface/HEAD/readme.txt --------------------------------------------------------------------------------