Mono is a software platform designed to allow developers to easily create cross platform applications. It is an open source implementation of Microsoft's .NET Framework based on the ECMA standards…
Mono is a software platform designed to allow developers to easily
create cross platform applications. It is an open source
implementation of Microsoft's .NET Framework based on the ECMA
standards for C# and the Common Language Runtime.
The Mono project is part of the .NET Foundation
> [!IMPORTANT]
> The [Mono Project (mono/mono)]( https://github.com/mono/mono) (‘original mono’) has been an important part of the .NET ecosystem since it was launched in 2001. Microsoft became the steward of the Mono Project when it acquired Xamarin in 2016.
>
> The last major release of the Mono Project was in July 2019, with minor patch releases since that time. The last patch release was February 2024.
>
> We are happy to announce that the WineHQ organization will be taking over as the stewards of the Mono Project upstream at wine-mono / Mono · GitLab (winehq.org). Source code in existing mono/mono and other repos will remain available, although repos may be archived. Binaries will remain available for up to four years.
>
> Microsoft maintains a modern fork of Mono runtime in the dotnet/runtime repo and has been progressively moving workloads to that fork. That work is now complete, and we recommend that active Mono users and maintainers of Mono-based app frameworks migrate to .NET which includes work from this fork.
>
> We want to recognize that the Mono Project was the first .NET implementation on Android, iOS, Linux, and other operating systems. The Mono Project was a trailblazer for the .NET platform across many operating systems. It helped make cross-platform .NET a reality and enabled .NET in many new places and we appreciate the work of those who came before us.
>
> Thank you to all the Mono developers!
Join us on Discord in the #monovm channel:
Contents
1. [Compilation and Installation](#compilation-and-installation)
2. [Using Mono](#using-mono)
3. [Directory Roadmap](#directory-roadmap)
4. [Contributing to Mono](#contributing-to-mono)
5. [Reporting bugs](#reporting-bugs)
6. [Configuration Options](#configuration-options)
7. [Working with Submodules](#working-with-submodules)
Build Status
Public CI: 
Legacy Jenkins CI (no longer available publicly):
| OS | Architecture | Status |
|--------------|--------------------|------------------------------|
| Debian 9 | amd64 | [![debian-9-amd64][1]][2] |
| Debian 9 | i386 | [![debian-9-i386][3]][4] |
| Debian 9 | armel | [![debian-9-armel][5]][6] |
| Debian 9 | armhf | [![debian-9-armhf][7]][8] |
| Debian 9 | arm64 | [![debian-9-arm64][9]][10] |
| OS X | amd64 | [![osx-amd64][11]][12] |
| OS X | i386 | [![osx-i386][13]][14] |
| Windows | amd64 | [![windows-amd64][15]][16] |
| Windows | i386 | [![windows-i386][17]][18] |
| CentOS | s390x (cs) | [![centos-s390x][19]][20] |
| Debian 9 | ppc64el (cs) | [![debian-9-ppc64el][21]][22]|
| AIX 6.1 | ppc64 (cs) | [![aix-ppc64][23]][24] |
| FreeBSD 12 | amd64 (cs) | [![freebsd-amd64][25]][26] |
_(cs) = community supported architecture_
[1]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-amd64/badge/icon
[2]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-amd64
[3]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-i386/badge/icon
[4]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-i386/
[5]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-armel/badge/icon
[6]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-armel/
[7]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-armhf/badge/icon
[8]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-armhf/
[9]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-arm64/badge/icon
[10]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-9-arm64/
[11]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-amd64/badge/icon
[12]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-amd64/
[13]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-i386/badge/icon
[14]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-i386/
[15]: https://jenkins.mono-project.com/job/z/label=w64/badge/icon
[16]: https://jenkins.mono-project.com/job/z/label=w64/
[17]: https://jenkins.mono-project.com/job/z/label=w32/badge/icon
[18]: https://jenkins.mono-project.com/job/z/label=w32/
[19]: https://jenkins.mono-project.com/job/test-mono-mainline-community/label=centos-s390x/badge/icon
[20]: https://jenkins.mono-project.com/job/test-mono-mainline-community/label=centos-s390x
[21]: https://jenkins.mono-project.com/job/test-mono-mainline-community-chroot/label=debian-9-ppc64el/badge/icon
[22]: https://jenkins.mono-project.com/job/test-mono-mainline-community-chroot/label=debian-9-ppc64el
[23]: https://jenkins.mono-project.com/job/test-mono-mainline-community/label=aix-ppc64/badge/icon
[24]: https://jenkins.mono-project.com/job/test-mono-mainline-community/label=aix-ppc64
[25]: https://jenkins.mono-project.com/job/test-mono-mainline-community/label=freebsd-12-amd64/badge/icon
[26]: https://jenkins.mono-project.com/job/test-mono-mainline-community/label=freebsd-12-amd64
Compilation and Installation
============================
Building the Software
---------------------
Please see our guides for building Mono on
Mac OS X,
Linux and
Windows.
Note that building from Git assumes that you already have Mono installed,
so please download and install the latest Mono release
before trying to build from Git. This is required because the Mono build
relies on a working Mono C# compiler to compile itself
(also known as bootstrapping)).
If you don't have a working Mono installation
---------------------------------------------
If you don't have a working Mono installation, you can try a slightly
more risky approach: getting the latest version of the 'monolite' distribution,
which contains just enough to run the 'mcs' compiler. You do this with:
# Run the following line after ./autogen.sh
make get-monolite-latest
This will download and place the files appropriately so that you can then
just run:
make
The build will then use the files downloaded by make get-monolite-latest.
Testing and Installation
------------------------
You can run the mono and mcs test suites with the command: make check.
Expect to find a few test suite failures. As a sanity check, you
can compare the failures you got with https://jenkins.mono-project.com/.
You can now install mono with: make install
You can verify your installation by using the mono-test-install
script, it can diagnose some common problems with Mono's install.
Failure to follow these steps may result in a broken installation.
Using Mono
==========
Once you have installed the software, you can run a few programs:
mono program.exeruntime engine
mcs program.csC# compiler
monodis program.exeCIL Disassembler
Directory Roadmap
=================
acceptance-tests/- Optional third party test suites used to validate Mono against a wider range of test cases.
data/- Configuration files installed as part of the Mono runtime.
docs/- Technical documents about the Mono runtime.
external/- Git submodules for external libraries (Newtonsoft.Json, ikvm, etc).
ikvm-native/- Glue code for ikvm.
libgc/- The (deprecated) Boehm GC implementation.
llvm/- Utility Makefiles for integrating the Mono LLVM fork.
m4/- General utility Makefiles.
man/- Manual pages for the various Mono commands and programs.
mcs/- The class libraries, compiler and tools
class/ - The class libraries (like System.*, Microsoft.Build, etc.)
* mcs/ - The Mono C# compiler written in C#
* tools/ - Tools like gacutil, ikdasm, mdoc, etc.
mono/- The core of the Mono Runtime.
arch/ - Architecture specific portions.
* benchmark/ - A collection of benchmarks.
* btls/ - Build files for the BTLS library which incorporates BoringSSL.
* cil/ - Common Intermediate Representation, XML
definition of the CIL bytecodes.
* dis/ - CIL executable Disassembler.
* eglib/ - Independent implementation of the glib API.
* metadata/ - The object system and metadata reader.
* mini/ - The Just in Time Compiler.
* profiler/ - The profiler implementation.
* sgen/ - The SGen Garbage Collector implementation.
* tests/ - The main runtime tests.
* unit-tests/ - Additional runtime unit tests.
* utils/ - Utility functions used across the runtime codebase.
msvc/- Logic for the MSVC / Visual Studio based runtime and BCL build system.
packaging/- Packaging logic for the OS X and Windows Mono packages.
po/- Translation files.
runtime/- A directory that contains the Makefiles that link the
samples/- Some simple sample programs on uses of the Mono
scripts/- Scripts used to invoke Mono and the corresponding program.
support/- Various support libraries.
tools/- A collection of tools, mostly used during Mono development.
Before submitting changes to Mono, please review the contribution
guidelines.
Please pay particular attention to the Important
Rules
section.
Reporting bugs
==============
To submit bug reports, please open an issue on the mono GitHub repo.
Please use the search facility to ensure the same bug hasn't already
been submitted and follow our
guidelines
on how to make a good bug report.
Configuration Options
=====================
The following are the configuration options that someone building Mono
might want to use:
--with-sgen=yes,no- Generational GC support: Used to enable or
* On platforms that support it, after building Mono, you will have
both a mono-boehm binary and a mono-sgen binary. mono-boehm uses Boehm,
while mono-sgen uses the Simple Generational GC.
--with-libgc=[included, none]- Selects the default Boehm
* *included*: (*slightly modified Boehm GC*) This is the default
value for the Boehm GC, and it's the most feature complete, it will
allow Mono to use typed allocations and support the debugger.
* *none*:
Disables the inclusion of a Boehm garbage collector.
* This defaults to included.
--enable-cooperative-suspend
MONO_ENABLE_COOP_SUSPEND flag.
--with-tls=__thread,pthread
* Although __thread is faster, it requires support from
the compiler, kernel and libc. Old Linux systems do
not support with __thread.
* This value is typically pre-configured and there is no
need to set it, unless you are trying to debug a problem.
--with-sigaltstack=yes,no
* This controls whether Mono will install a special
signal handler to handle stack overflows. If set toyes, it will turn stack overflows into the
StackOverflowException. Otherwise when a stack
overflow happens, your program will receive a
segmentation fault.
* The configure script will try to detect if your
operating system supports this. Some older Linux
systems do not support this feature, or you might want
to override the auto-detection.
--with-static_mono=yes,no
mono should link against a
static library (libmono.a) or a shared library
(libmono.so).
* This defaults to yes, and will improve the performance
of the mono program.
* This only affects the mono' binary, the shared
library libmono.so will always be produced for
developers that want to embed the runtime in their
application.
- --with-xen-opt=yes,no
- Optimize code for Xen virtualization.
* This defaults to yes.
- --with-large-heap=yes,no
- Enable support for GC heaps larger than 3GB.
* This defaults to no.
- --enable-small-config=yes,no
- Enable some tweaks to reduce memory usage
* Typically this means that the number of threads that can be created
is limited (256), that the maximum heap size is also reduced (256 MB)
and other such limitations that still make mono useful, but more suitable
to embedded devices (like mobile phones).
* This defaults to no.
- --with-ikvm-native=yes,no
- Controls whether the IKVM JNI interface library is
* This is used if you are planning on
using the IKVM Java Virtual machine with Mono.
* This defaults to yes.
- --with-profile4=yes,no
- Whether you want to build the 4.x profile libraries
* This defaults to yes.
- --with-libgdiplus=installed,sibling,
- Configure where Mono
* It defaults to installed, which means that the
library is available to Mono through the regular
system setup.
* sibling can be used to specify that a libgdiplus
that resides as a sibling of this directory (mono)
should be used.
* Or you can specify a path to a libgdiplus.
- --enable-minimal=LIST
* aot:
Disables support for the Ahead of Time compilation.
* attach`:
Support for the Mono.Manag
…
Members
-
mono
Mono open source ECMA CLI, C# and .NET implementation.
C# ★ 11k 1y agoExplain → -
SkiaSharp
SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
C# ★ 5.5k 4h agoExplain → -
CppSharp
Tools and libraries to glue C/C++ APIs to high-level languages
C# ★ 3.4k 2mo agoExplain → -
monodevelop ▣
MonoDevelop is a cross platform .NET IDE
C# ★ 2.9k 4y agoExplain → -
taglib-sharp
Library for reading and writing metadata in media files
C# ★ 1.5k 1y agoExplain → -
xwt ▣
A cross-platform UI toolkit for creating desktop applications with .NET and Mono
C# ★ 1.4k 3y agoExplain → -
Embeddinator-4000 ▣
Tools to turn .NET libraries into native libraries that can be consumed on Android, iOS, Mac, Linux and other platforms.
C# ★ 757 5y agoExplain → -
VulkanSharp ▣
Open source .NET binding for the Vulkan API
C# ★ 531 5y agoExplain → -
CocosSharp ▣
CocosSharp is a C# implementation of the Cocos2D and Cocos3D APIs that runs on any platform where MonoGame runs.
C# ★ 497 6y agoExplain → -
monotouch-bindings ▣
A collection of third party bindings for MonoTouch
C# ★ 448 5y agoExplain → -
t4
T4 text templating engine
C# ★ 439 1y agoExplain → -
gtk-sharp ▣
Gtk# is a Mono/.NET binding to the cross platform Gtk+ GUI toolkit and the foundation of most GUI apps built with Mono
C# ★ 434 3y agoExplain → -
sharpen ▣
Sharpen is an Eclipse plugin created by db4o that allows you to convert your Java project into c#
Java ★ 388 5y agoExplain → -
website
Mono's web site.
HTML ★ 369 8d agoExplain → -
libgdiplus ▣
C-based implementation of the GDI+ API
C ★ 355 2y agoExplain → -
SkiaSharp.Extended
SkiaSharp is a cross-platform, comprehensive 2D graphics API for all .NET platforms. And, here is where you will find all sorts of extras that you can use with it.
C# ★ 263 1d agoExplain → -
ngit ▣
Automated jgit port to c#
C# ★ 262 6y agoExplain → -
monomac ▣
Bindings to create MacOS X applications with Mono.
C# ★ 257 6y agoExplain → -
LineEditor ▣
LineEditor is an interactive line editor for Command Line applications in .NET
C# ★ 236 5y agoExplain → -
cxxi ▣
C++ interop framework
C# ★ 201 5y agoExplain → -
xsp ▣
Mono's ASP.NET hosting server. This module includes an Apache Module, a FastCGI module that can be hooked to other web servers as well as a standalone server used for testing (similar to Microsoft's Cassini)
C# ★ 197 5y agoExplain → -
roslyn ▣
Roslyn Compiler - Tracks Mono Patches
C# ★ 186 6y agoExplain → -
mono-tools ▣
The mono-tools package contains a series of extra tools for Mono users.
C# ★ 169 3y agoExplain → -
docker ▣
Docker images, for the Docker container system
Dockerfile ★ 167 1y agoExplain → -
moon ▣
Moonlight, an open source implementation of Silverlight for Unix systems
C# ★ 166 13y agoExplain → -
mono-addins ▣
Mono.Addins is a generic framework for creating extensible applications, and for creating add-ins which extend those applications.
C# ★ 164 2y agoExplain → -
mono-curses ▣
Mono/.NET bindings to the Unix Curses as well as GUI framework for creating text applications with Curses
C# ★ 141 7y agoExplain → -
winforms ▣
Winforms samples for use with Mono's implementation of System.Windows.Forms
C# ★ 137 16y agoExplain → -
aspnetwebstack ▣
Mono branch of Microsoft's ASP.NET WebStack
C# ★ 119 13y agoExplain → -
sdb ▣
A command line client for the Mono soft debugger.
C# ★ 117 5y agoExplain → -
opentk ▣
OpenTK is a set of bindings to OpenGL, OpenCL and OpenAL. This is not the main repository, just a temporary import to allow Mono developers to make changes to this module. Please do not contribute changes here, contribute them to the upstream maintainers at http://www.opentk.com
C# ★ 117 3y agoExplain → -
mono-basic ▣
Visual Basic Compiler and Runtime
Visual Basic .NET ★ 112 5y agoExplain → -
cocos-sharp-samples ▣
CocosSharp samples
C# ★ 111 6y agoExplain → -
ikvm-fork ▣
A fork of the original cvs based IKVM repository
C# ★ 102 5y agoExplain → -
TsToCSharp ▣
Emit C# strongly typed interface code from TypeScript definition files.
TypeScript ★ 97 3y agoExplain → -
skia ⑂
Skia is a complete 2D graphic library for drawing Text, Geometries, and Images.
C++ ★ 90 2d agoExplain → -
mono-upnp ▣
UPNP binding for Mono/.NET
C# ★ 86 6y agoExplain → -
debugger-libs
Debugger libraries
C# ★ 86 6mo agoExplain → -
md-website
MonoDevelop WebSite
HTML ★ 85 3d agoExplain → -
dbus-sharp ▣
DBus Sharp
C# ★ 81 5y agoExplain → -
api-doc-tools
.NET Reference API Toolchain
C# ★ 70 23d agoExplain → -
sysdrawing-coregraphics ▣
System.Drawing implementation using CoreGraphics.
C# ★ 70 5y agoExplain → -
webkit-sharp ▣
C#/CLI bindings to WebKit/Gtk+
C# ★ 69 16y agoExplain → -
maccore ▣
MacCore contains the shared code between MonoTouch and MonoMac
C# ★ 63 6y agoExplain → -
Mono.Zeroconf ▣
Cross platform ZeroConf client that works with the underlying ZeroConf stack on the platform for Mono and .NET
C# ★ 62 6y agoExplain → -
llvm ⑂ ▣
Mono LLVM Repository.
LLVM ★ 60 6y agoExplain → -
mono.posix
POSIX/Unix interface for Mono, .NET and .NET Core. Provides functionality for managed code to access POSIX/Unix features not accessible via the BCL. This repository supersedes the older code in https://github.com/mono/mono
C# ★ 59 12d agoExplain → -
msbuild ⑂ ▣
The Microsoft Build Engine (MSBuild) is the build platform for .NET and Visual Studio.
C# ★ 51 3y agoExplain → -
mwf-designer ▣
Windows.Forms designer for Mono. Work in progress
C# ★ 47 5y agoExplain → -
heap-shot ▣
No description.
C# ★ 45 6y agoExplain → -
cecil-old ▣
ECMA CIL Manipulation Library
C# ★ 43 15y agoExplain → -
ImmutableCollections ⑂ ▣
Free C# immutable collections implementation
C# ★ 40 10y agoExplain → -
tao ▣
The Tao OpenGL, OpenAL, GLU, FreeGlut bindings for .NET and Mono
C# ★ 39 16y agoExplain → -
monodroid-bindings ▣
Mono for Android Jar Bindings
C# ★ 37 6y agoExplain → -
monkeywrench ▣
Continuous build system used by Mono and Moonlight.
C# ★ 35 6y agoExplain → -
entityframework ▣
No description.
C# ★ 34 13y agoExplain → -
linux-packaging-mono ▣
Packaging metadata for mono-project.com packages
★ 34 2y agoExplain → -
reference-assemblies ▣
Binary reference assemblies
C# ★ 34 3y agoExplain → -
mod_mono ▣
Apache module to host the XSP ASP.NET host
C ★ 33 5y agoExplain → -
mono-tls ▣
New TLS implementation for Mono.
C# ★ 29 10y agoExplain → -
referencesource ⑂ ▣
Source from the Microsoft .NET Reference Source that represent a subset of the .NET Framework
C# ★ 29 5y agoExplain → -
bockbuild ▣
Build & packaging system, responsible for the Mono project distribution for Mac
Python ★ 27 4y agoExplain → -
SkiaSharp-API-docs
SkiaSharp and HarfBuzzSharp API reference docs
★ 26 2d agoExplain → -
xamarin-gtk-theme ▣
No description.
C ★ 26 5y agoExplain → -
uia2atk ▣
Accessibility bridge between UIA and Gnome's ATK
C# ★ 24 5y agoExplain → -
cocos2d-xna ⑂ ▣
XNA Port of Cocos2d-X
C# ★ 24 13y agoExplain → -
linux-packaging-msbuild ▣
No description.
C# ★ 22 5y agoExplain → -
rx ⑂ ▣
copied and shrinked clone of rx.codeplex.com
C# ★ 20 7y agoExplain → -
csvorbis ▣
No description.
C# ★ 19 6y agoExplain → -
moma ▣
Mono Migration Analyzer. A tool to scan compiled assemblies and determine their compatibility with Mono.
C# ★ 19 6y agoExplain → -
olive ▣
Olive is an incubation module used to host new Mono code under development based on Microsoft's APIs. Olive code eventually graduates and is moved into the Mono distribution.
C# ★ 18 12y agoExplain → -
mono-webbrowser ▣
Browser backends for Mono.WebBrowser
C# ★ 18 6y agoExplain → -
corefx ⑂ ▣
This repository contains the foundational libraries that make up the .NET Core development stack.
C# ★ 18 4y agoExplain → -
debugger ▣
Mono Hard Debugger
C ★ 16 14y agoExplain → -
monocov ▣
Mono Code Coverage profiler module
C# ★ 16 15y agoExplain → -
gtk-sharp-ribbon ▣
No description.
C# ★ 16 16y agoExplain → -
monodevelop-flatpak ▣
No description.
Makefile ★ 15 6y agoExplain → -
ikdasm ⑂ ▣
IKVM.Reflection based ildasm clone
C# ★ 14 7y agoExplain → -
guiunit ▣
A unit test runner which interoperates with any Gui main loop
C# ★ 14 4y agoExplain → -
monologue ▣
Monologue is Mono's blog aggregation software for the Mono community
C# ★ 13 4y agoExplain → -
lb ▣
Lame Blog, the lamest blog engine in the world
C# ★ 13 5y agoExplain → -
gir-sharp ▣
C# binding generator for GIR format
C# ★ 13 5y agoExplain → -
repo ▣
This is the mono repo - we'll put everything here
★ 13 6y agoExplain → -
WindowsAPICodePack ▣
WindowsAPICodePack as imported from MonoDevelop
C# ★ 12 6y agoExplain → -
stetic ▣
The Gtk# GUI designer
C# ★ 11 16y agoExplain → -
gluezilla ▣
No description.
C ★ 11 15y agoExplain → -
roslyn-binaries ▣
Pre-built binaries of Roslyn
C# ★ 11 5y agoExplain → -
pty-sharp ▣
API for managing Unix pseudo-terminals from managed code
C ★ 10 6y agoExplain → -
mono-microthreads ▣
Microthreads implementation built on top of Mono.Tasklets library
C# ★ 9 16y agoExplain → -
Newtonsoft.Json ⑂ ▣
Json.NET is a popular high-performance JSON framework for .NET
C# ★ 9 12y agoExplain → -
coreclr ⑂ ▣
This repo contains the .NET Core runtime, called CoreCLR, and the base library, called mscorlib. It includes the garbage collector, JIT compiler, base .NET data types and many low-level classes.
C# ★ 8 6y agoExplain → -
gnome-sharp ▣
Bindings to the core Gnome APIs
C# ★ 8 6y agoExplain → -
winforms-tools ▣
Open source Windows.Forms tools.
C# ★ 8 16y agoExplain → -
gnome-keyring-sharp ▣
Bindings to Gnome's KeyRing APIs
C# ★ 8 16y agoExplain → -
old-code ▣
Old mono code that has not been developed in years
C# ★ 8 16y agoExplain → -
WebAssembly.JSInterop ▣
WebAssembly JSInterop library
JavaScript ★ 7 6y agoExplain → -
rocks ▣
Mono.Rocks is a library of utility functions
C# ★ 7 16y agoExplain → -
mooncodecs ▣
open source codecs that can be plugged into Moonlight or Silverlight applications
C# ★ 7 15y agoExplain → -
linux-packaging-fsharp ▣
Packaging metadata for mono-project.com packages
F# ★ 6 5y agoExplain → -
dbus-sharp-glib ▣
Managed dbus
C# ★ 6 5y agoExplain → -
heap-buddy ▣
No description.
C# ★ 6 16y agoExplain → -
google-sharp ▣
No description.
C# ★ 6 16y agoExplain → -
corert ⑂ ▣
This repo contains CoreRT, a .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying .NET Native compiler toolchain.
C# ★ 6 5y agoExplain → -
boringssl ▣
Custom version of Boring SSL used by Mono
C ★ 6 5y agoExplain → -
TreemapViewer ▣
Silverlight-based treemap viewer application, contains an assembly size browser
C# ★ 6 6y agoExplain → -
monohotdraw ▣
Vector drawing program
C# ★ 6 16y agoExplain → -
Mono.Simd.Math ▣
Math library that uses Mono's accelerated Mono.Simd library
C# ★ 6 16y agoExplain → -
linux-packaging-xsp ▣
Packaging metadata for mono-project.com packages
Makefile ★ 5 3y agoExplain → -
heap-prof ▣
No description.
Shell ★ 5 16y agoExplain → -
nplot-gtk ▣
Plotting library for Gtk#
C# ★ 5 16y agoExplain → -
lucene.net ⑂ ▣
Mirror of Apache Lucene.Net (incubating)
C# ★ 5 13y agoExplain → -
gtkglarea-sharp ▣
No description.
C# ★ 4 16y agoExplain → -
gtk-sharp-beans ▣
No description.
C# ★ 4 15y agoExplain → -
libgit-binary ▣
Binaries for libgit and libgit-sharp
PowerShell ★ 4 4y agoExplain → -
DemoLib ▣
No description.
C# ★ 4 16y agoExplain → -
wintools ▣
Contains MonkeyBuilder, an experimental system for building Mono on Windows without Cygwin
C# ★ 4 16y agoExplain → -
embeddinator-5000 ▣
Tools to turn .NET libraries into native libraries that can be consumed on Android, iOS, Mac, Linux and other platforms.
★ 4 9y agoExplain → -
api-snapshot ▣
No description.
C# ★ 4 4y agoExplain → -
Lucene.Net.Light ▣
This is a subset of the Lucene.NET APIs as required by MonoDoc
C# ★ 4 6y agoExplain → -
linux-packaging-monodevelop ▣
Packaging metadata for mono-project.com packages
C# ★ 4 6y agoExplain → -
ikvm ⑂ ▣
OBSOLETE - USE THE IKVM-FORK REPOSITORY AT http://github.com/mono/ikvm-fork
Java ★ 4 13y agoExplain → -
ipod-sharp ▣
No description.
C# ★ 4 15y agoExplain → -
gnome-desktop-sharp ▣
Bindings to various Gnome desktop APIs
C# ★ 4 16y agoExplain → -
facebook-sharp ▣
No description.
C# ★ 4 16y agoExplain → -
NUnitLite ⑂ ▣
NUnitLite
C# ★ 3 6y agoExplain → -
cocoa-sharp ▣
Deprecated: old bindings to the Cocoa API. Use MonoMac instead.
C# ★ 3 16y agoExplain → -
win32-installers ▣
Installers for Gtk# on Windows
C ★ 3 13y agoExplain → -
monodroid-samples ▣
No description.
★ 3 15y agoExplain → -
qa ▣
Tools from the Quality Assurance team
Python ★ 3 15y agoExplain → -
flickr-sharp ▣
No description.
C# ★ 3 16y agoExplain → -
aspeditor ▣
ASP.NET GUI editor for MonoDevelop, deprecated as the editor was merged into MonoDevelop
C# ★ 2 16y agoExplain → -
gtkspell-sharp ▣
No description.
C# ★ 2 16y agoExplain → -
gtkmozembed-sharp ▣
No description.
C# ★ 2 16y agoExplain → -
gladeui-sharp ▣
No description.
C ★ 2 16y agoExplain → -
linux-packaging-core-setup ▣
No description.
C# ★ 2 4y agoExplain → -
linux-packaging-referenceassemblies-pcl ▣
Packaging metadata for mono-project.com packages
★ 2 5y agoExplain → -
jgit-binary ▣
No description.
★ 2 6y agoExplain → -
sharpsvn-binary ▣
Binaries for sharpsvn.
Shell ★ 2 5y agoExplain → -
lldb-binaries ▣
LLDB OSX binaries with Mono support
Shell ★ 2 5y agoExplain → -
linux-packaging-skiasharp ▣
No description.
C++ ★ 2 6y agoExplain → -
msdn-browse ▣
Tiny app to browse MSDN documentation with a Gtk# frontend, no longer developed
C# ★ 2 16y agoExplain → -
illinker-test-assets ▣
No description.
HTML ★ 2 3y agoExplain → -
emveepee ▣
No description.
C# ★ 2 16y agoExplain → -
monomac-bindings ▣
Bindings to popular third party OSX libraries for Mono/MonoMac
C# ★ 2 13y agoExplain → -
mdtestharness ▣
Test harness runner for MonoDevelop unit tests
★ 2 14y agoExplain → -
rank ▣
Mono Contributor Ranking Site
C# ★ 2 15y agoExplain → -
monodevelop-visualizers ▣
Data visualizers for MonoDevelop's debugger
C# ★ 2 16y agoExplain → -
exiv2-sharp ▣
No description.
C ★ 2 16y agoExplain → -
diacanvas-sharp ▣
No description.
C# ★ 2 16y agoExplain → -
daap-sharp ▣
No description.
C# ★ 2 16y agoExplain → -
mono-wiki-skin ▣
Skin for Mono's web site
PHP ★ 1 16y agoExplain → -
acceptance-tests ▣
Acceptance tests for the iFolder team
C# ★ 1 16y agoExplain → -
linux-packaging-nuget ▣
Packaging metadata for mono-project.com packages
★ 1 3y agoExplain → -
linux-packaging-mono-tools ▣
No description.
C# ★ 1 5y agoExplain → -
linux-packaging-gtk-sharp2 ▣
Packaging metadata for mono-project.com packages
C# ★ 1 5y agoExplain → -
linux-packaging-libgdiplus ▣
Packaging metadata for mono-project.com packages
C ★ 1 5y agoExplain → -
linux-packaging-mod-mono ▣
Packaging metadata for mono-project.com packages
Shell ★ 1 5y agoExplain → -
linux-packaging-mono-snapshot ▣
Packaging metadata for Mono snapshot packages
Shell ★ 1 5y agoExplain → -
mail-archives ▣
Archives of lists.dot.net (lists.xamarin.com)
★ 1 5y agoExplain → -
jscall-sharp ▣
No description.
C# ★ 1 16y agoExplain → -
NuGet.Client ⑂ ▣
Core client libraries for NuGet Services
C# ★ 1 9y agoExplain → -
NuGet.BuildTasks ⑂ ▣
The build tasks used to pick up package content from project.lock.json.
C# ★ 1 8y agoExplain → -
xunit-binaries ▣
No description.
C# ★ 1 6y agoExplain → -
buildtools ⑂ ▣
Build tools that are necessary for building the .NET Core projects
C# ★ 1 9y agoExplain → -
momareports ▣
No description.
JavaScript ★ 1 15y agoExplain → -
ScrewTurnWiki ▣
ScrewTurnWIki v3 slightly modified for Mono (theme, a plugin, few code changes). Mono code is in the 'mono' branch, the 'master' branch always contains ONLY the original ScrewTurnWiki sources. Switch to the 'mono' branch in order to read some notes (at the bottom of the page).
C# ★ 1 15y agoExplain → -
gkeyfile-sharp ▣
No description.
C# ★ 1 15y agoExplain → -
hal-sharp ▣
No description.
C# ★ 1 16y agoExplain → -
gtksourceview2-sharp ▣
No description.
★ 1 16y agoExplain → -
Dumbarton ▣
No description.
C ★ 1 16y agoExplain → -
csharpplugin ▣
No description.
C ★ 1 16y agoExplain → -
csdirac ▣
No description.
C# ★ 1 16y agoExplain → -
bench ▣
No description.
C# ★ 1 16y agoExplain → -
linux-packaging-mono-llvm ▣
No description.
LLVM ★ 0 5y agoExplain → -
linux-packaging-nunit ▣
Packaging metadata for mono-project.com packages
C# ★ 0 5y agoExplain → -
linux-packaging-cli-common ▣
Packaging metadata for mono-project.com packages
Perl ★ 0 5y agoExplain → -
linux-packaging-cecil ▣
No description.
C# ★ 0 5y agoExplain → -
linux-packaging-mono-basic ▣
Packaging metadata for mono-project.com packages
Visual Basic .NET ★ 0 5y agoExplain → -
help ▣
Need help with Mono? File an issue here.
★ 0 5y agoExplain → -
.github
No description.
★ 0 3y agoExplain → -
lldb ⑂ ▣
Mirror of official lldb git repository located at http://llvm.org/git/lldb. Updated every five minutes.
C++ ★ 0 7y agoExplain → -
tsunami-bindings ▣
OpenGL bindings for C# this code has not been in development for more than 6 years
C# ★ 0 16y agoExplain → -
maigre ▣
Managed GTK Theme Engine
C# ★ 0 15y agoExplain → -
upcoming-sharp ▣
Bindings for the Upcoming service
C# ★ 0 16y agoExplain → -
svn-tools ▣
Tools for using SVN
★ 0 16y agoExplain → -
njb-sharp ▣
Mono/C# bindings to libnjb
C# ★ 0 16y agoExplain → -
mvcwrench ▣
ASP.NET MVC frontend for Mono's build system. [http://wrench.mono-project.com/]
JavaScript ★ 0 15y agoExplain → -
moon-mp ▣
Moonlight Media Player is a Firefox plugin that emulates the Windows Media Player ActiveX control
JavaScript ★ 0 16y agoExplain → -
monosummit07 ▣
Website for the 2007 MonoSummit
★ 0 16y agoExplain → -
mono-snippets ▣
Code snippets that are used across Mono apps
C# ★ 0 16y agoExplain → -
monoskel-gapi ▣
No description.
Shell ★ 0 16y agoExplain → -
mono-oprofile ▣
Support for OProfile in Mono
C ★ 0 16y agoExplain → -
monomeeting ▣
Mono Meeting 2006 web site
ASP ★ 0 16y agoExplain → -
monodoc-widgets ▣
No description.
C# ★ 0 16y agoExplain → -
mono-check ▣
No description.
Shell ★ 0 16y agoExplain → -
moma-tool ▣
Tools to maintain the Mono Migration Analysis reports
C# ★ 0 16y agoExplain → -
maemo-sharp ▣
Bindings to the Maemo APIs
C# ★ 0 16y agoExplain → -
lunareclipse ▣
Silverlight GUI designer written in Silverlight
C# ★ 0 16y agoExplain → -
gsf-sharp ▣
No description.
C# ★ 0 16y agoExplain → -
gert ▣
No description.
C# ★ 0 16y agoExplain →
No repos match these filters.