justfile(1/0)

Dotnet snippets in justfile

In a recent project there were a few dotnet and Docker snippets that I wrapped into Justfile commands which saved me many headaches. ℹ️ All of these commands are executed in PowerShell. You'll need to add this line to the top of your Justfile for it to use PowerShell as its default interpreter. set windows-powershell := true The first runs the project locally. Nothing special. But it also runs a pre-requisite check function which ensures that another service that my project depends on is running.…