clr

2023-05-19T17:09:13.143089Z

Where can I read about how to best package my ClojureCLR library for use in other projects, perhaps as a NuGet pkg?

dmiller 2023-05-20T14:08:15.417579Z

https://github.com/clojure/clojure-clr/blob/master/docs/nuget-for-libs.md (We really do need to up our game on the documentation. ) This is how I'm packaging all the libraries at this point. You create a .csproj describing the project and use that to package. Your source files will be included in the resulting DLL as embedded resources. If that DLL is loaded, ClojureCLR knows to look inside for the embeded resource when doing requre , load, and the like.

2023-05-20T22:06:41.065939Z

Thank you @dmiller! I will help with docs where I can!