Skip to content

Commit

Permalink
Fix bug with unsupported log file
Browse files Browse the repository at this point in the history
  • Loading branch information
omaus committed Oct 30, 2024
1 parent 5327798 commit d4447b0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build/BasicTasks.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
)
}

0 comments on commit d4447b0

Please sign in to comment.