Skip to content

Commit d4447b0

Browse files
committed
Fix bug with unsupported log file
1 parent 5327798 commit d4447b0

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

build/BasicTasks.fs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,14 @@ let clean = BuildTask.create "Clean" [] {
2626

2727
let build = BuildTask.create "Build" [clean] {
2828
solutionFile
29-
|> DotNet.build id
29+
|> DotNet.build (
30+
fun x ->
31+
{
32+
x with
33+
MSBuildParams = {
34+
x.MSBuildParams with
35+
DisableInternalBinLog = true
36+
}
37+
}
38+
)
3039
}

0 commit comments

Comments
 (0)