Having started w/ this I did not yet get to the point where the application's own Clojure sources (or compiled binaries if that were possible) would be needed. Initializing Clojure itself seems to have problems:
clojure.clr.api.Clojure.var method (being the first method invoked from Clojure library) throws an exception. There are a couple of inner exceptions, the root cause is
{"Could not locate clojure.core.clj.dll, clojure.core.cljc.dll, clojure/core.clj or clojure/core.cljc on load path.":null} System.Exception {System.IO.FileNotFoundException}
Whose stack trace shows it was thrown from RT.load :
StackTrace " at clojure.lang.RT.load(String relativePath, Boolean failIfNotFound)\r\n at clojure.lang.RT.load(String relativePath)\r\n at clojure.lang.RT..cctor()" string
I am using the Clojure nuget 1.11.0 on .NET 8. Do I need to include something else as well? Or where might I be going wrong?