Build the project

This commit is contained in:
Sven van Heugten 2026-05-12 07:05:45 +02:00
parent b429296967
commit 05deb1f089
No known key found for this signature in database
GPG key ID: D612F88666F4F660

View file

@ -1,3 +1,5 @@
open System
open System.IO
open Fli
[<EntryPoint>]
@ -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