├── .gitignore ├── LICENSE ├── README.md ├── generate.sh ├── issue_template.md ├── makeself ├── COPYING ├── README ├── makeself-header.sh ├── makeself.1 ├── makeself.lsm └── makeself.sh └── src ├── mdtool-stable ├── monodevelop-stable ├── monodevelop-stable-uninstall ├── monodevelop-stable.svg └── postinstall.sh /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | tmp/ 3 | monodevelop/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/README.md -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/generate.sh -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/issue_template.md -------------------------------------------------------------------------------- /makeself/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/makeself/COPYING -------------------------------------------------------------------------------- /makeself/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/makeself/README -------------------------------------------------------------------------------- /makeself/makeself-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/makeself/makeself-header.sh -------------------------------------------------------------------------------- /makeself/makeself.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/makeself/makeself.1 -------------------------------------------------------------------------------- /makeself/makeself.lsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/makeself/makeself.lsm -------------------------------------------------------------------------------- /makeself/makeself.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/makeself/makeself.sh -------------------------------------------------------------------------------- /src/mdtool-stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/src/mdtool-stable -------------------------------------------------------------------------------- /src/monodevelop-stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/src/monodevelop-stable -------------------------------------------------------------------------------- /src/monodevelop-stable-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/src/monodevelop-stable-uninstall -------------------------------------------------------------------------------- /src/monodevelop-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/src/monodevelop-stable.svg -------------------------------------------------------------------------------- /src/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harry-cpp/monodevelop-run-installer/HEAD/src/postinstall.sh --------------------------------------------------------------------------------