From 05deb1f08945bc29b1ca78a2205128f6ea93462e Mon Sep 17 00:00:00 2001 From: Sven van Heugten Date: Tue, 12 May 2026 07:05:45 +0200 Subject: [PATCH] Build the project --- Mutannot/Program.fs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Mutannot/Program.fs b/Mutannot/Program.fs index 1de7c20..98784fb 100644 --- a/Mutannot/Program.fs +++ b/Mutannot/Program.fs @@ -1,3 +1,5 @@ +open System +open System.IO open Fli [] @@ -18,4 +20,13 @@ let main argv = eprintfn "Uncommitted changes. Refusing to run." exit 2 + cli { + Exec "dotnet" + Arguments [ "build"; argv[0] ] + Output(new StreamWriter(Console.OpenStandardOutput())) + } + |> Command.execute + |> Output.throwIfErrored + |> ignore + 0