CLR Projects

CLR Projects stands for projects running under the Common Language Runtime. The most well-known implementation of this runtime is Microsoft .NET. However, our projects expect to be compatible with any CLR implementing the .NET framework, and in particular we support the Mono Project initiative. For this reason, all our Open Source projects are initialy developed under Linux using the MonoDevelop IDE and Mono 1.0 framework and run-time. Windows testing is done later.

See also...

-----

SubversionSharp

SubversionSharp is a C# wrapper that fully covers the client API of Subversion SCM. Easy access to the Subversion API is provided without any compromise on fonctionality. This library is the starting point to easily integrate Subversion repositories in any .NET managed software. These C# bindings for Subversion has been written for portability and performances. This library is now available for both Mono/Linux and .NET/Windows environments. read more...

See also...

CallConvHack

The main purpose of CallConvHack is to provide a working SubversionSharp to Windows users. Subversion callbacks should use Cdecl calling convention. Under Windows, C# delegates default to Stdcall calling convention. Moreover, there is no way using plain C# to change this behaviour [1]. This hack (based on several articles, blogs and posts available elsewhere) patch IL code directly to fix the calling convention of attribute-marked delegates. read more...

AprSharp

AprSharp is a C# wrapper library around the Apache Portable Runtime. It provides a starting point to easily interface any .NET managed languages with libraries using AprPool for their memory management. AprSharp has been written to support functionality required by SubversionSharp. read more...