From d4447b059903169c59ce3f3c5a13dca77c260221 Mon Sep 17 00:00:00 2001 From: omaus Date: Wed, 30 Oct 2024 10:11:29 +0100 Subject: [PATCH] Fix bug with unsupported log file --- build/BasicTasks.fs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/build/BasicTasks.fs b/build/BasicTasks.fs index d7f28ad..6ff150c 100644 --- a/build/BasicTasks.fs +++ b/build/BasicTasks.fs @@ -26,5 +26,14 @@ let clean = BuildTask.create "Clean" [] { let build = BuildTask.create "Build" [clean] { solutionFile - |> DotNet.build id + |> DotNet.build ( + fun x -> + { + x with + MSBuildParams = { + x.MSBuildParams with + DisableInternalBinLog = true + } + } + ) } \ No newline at end of file