From 41ba61b76027eb3858f4d5f3e21932b868500130 Mon Sep 17 00:00:00 2001 From: devmobasa <4170275+devmobasa@users.noreply.github.com> Date: Sun, 10 Aug 2025 15:30:03 +0200 Subject: [PATCH] Add .NET installation option to the development environment script (#615) Co-authored-by: David Heinemeier Hansson --- bin/omarchy-install-dev-env | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/omarchy-install-dev-env b/bin/omarchy-install-dev-env index eddfe50f..ea52e97a 100755 --- a/bin/omarchy-install-dev-env +++ b/bin/omarchy-install-dev-env @@ -1,7 +1,7 @@ #!/bin/bash if [[ -z "$1" ]]; then - echo "Usage: omarchy-instal-dev-env " >&2 + echo "Usage: omarchy-instal-dev-env " >&2 exit 1 fi @@ -60,4 +60,8 @@ ocaml) eval "$(opam env)" opam install ocaml-lsp-server odoc ocamlformat utop --yes ;; +dotnet) + echo -e "Installing .NET...\n" + mise use --global dotnet@latest + ;; esac