Skip to content

Using ClojureCLR in a C# project

David Miller edited this page Nov 23, 2013 · 6 revisions

To use ClojureCLR in a C# project, include the ClojureCLR runtime via NuGet. The repo is at http://www.nuget.org/packages/Clojure/. From the NuGet console:

Install-Package Clojure

The package includes runtimes for .Net 3.5 and 4.0. ClojureCLR is packaged in the single file Clojure.dll that contains the runtime. (The many DLLs required have been ILMerge'd.) Also, the DLLs are signed so that they can be included in signed projects.

There is a new API for interacting with ClojureCLR from a C# program coming in the next release. Details coming soon.

Clone this wiki locally