clr

dangercoder 2023-05-27T08:06:04.903979Z

Hey, I just built a new dotnet tool for launching clojure-clr and loading all dependencies based on .csproj It works and doesn't require any "extra jvm tooling". How to use it 1. dotnet tool install --global potion 2. Have a clojure-clr project with a .csproj file. This is an example: https://github.com/Dangercoder/clojure-clr-dotnet-api 3. Run dotnet restore 4. Run potion https://www.nuget.org/packages/potion/ https://github.com/Dangercoder/potion Supports .NET Core 3.1, .NET 6 and .NET 7 - only tested on Linux.

👏 1
dangercoder 2023-05-27T08:06:59.345189Z

Thanks @dmiller for the Clojure.Main tool, I just added some extra stuff.