From cef37f249dc8bb08f498c39294f8993fd9001d35 Mon Sep 17 00:00:00 2001 From: EsVagy42 Date: Sun, 21 Sep 2025 01:50:21 +0200 Subject: [PATCH] Configured competitest for c#, fixes #6 --- config/competitest.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config/competitest.nix b/config/competitest.nix index 04ff0d6..2972e84 100644 --- a/config/competitest.nix +++ b/config/competitest.nix @@ -21,6 +21,16 @@ ]; }; }; + run_command = { + cs = { + exec = "dotnet"; + args = [ + "run" + "--project" + "$(ABSDIR)" + ]; + }; + }; }; }; };