Fork me on GitHub
#clr
<
2023-05-19
>
skelter17:05:13

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

dmiller14:05:15

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.

skelter22:05:41

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