From 163004a07f96bae9fe3fc903af410433d975b714 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sat, 21 Jun 2025 18:03:33 +0200 Subject: [PATCH] feat: Add sharper for executing dotnet command --- init.el | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 14438cf..998a6ce 100644 --- a/init.el +++ b/init.el @@ -1357,7 +1357,30 @@ minibuffer, even without explicitly focusing it." project-name (if (string= "" subdirectory) "" - (concat "." (substring subdirectory 0 -1))))))) + (concat "." (substring subdirectory 0 -1)))))) + + ;; Build solution + ;; --debug / --release + ;; Build csproj + ;; --debug / --release + ;; Run csproj + ;; Choose work dir + ;; Choose arguments + ;; Run last ran application + ;; with last arguments, work dir... + ;; Run solution tests + ;; Run csproj tests + ;; Feeling lucky - run current file tests + ) + +(my-use-package sharper + :ensure t + :commands (sharper-main-transient) + :general + (my-local-leader csharp-mode-map + "m" '(sharper-main-transient :wk "Compile menu") + "c" '(sharper-transient-build :wk "Build") + "t" '(sharper-transient-test :wk "Test"))) ;; Sh, Bash -- 2.49.0