We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b850d10 commit 67cc98fCopy full SHA for 67cc98f
build/Program.fs
@@ -59,7 +59,16 @@ let init args =
59
|> Seq.iter Shell.rm
60
)
61
62
- Target.create "Build" (fun _ -> DotNet.build id "")
+ // Avoid msbuild loading issues: https://github.com/fsprojects/FAKE/issues/2515#issue-622856864
63
+ let buildOpts (opts: DotNet.BuildOptions) = {
64
+ opts with
65
+ MSBuildParams = {
66
+ opts.MSBuildParams with
67
+ DisableInternalBinLog = true
68
+ }
69
70
+
71
+ Target.create "Build" (fun _ -> DotNet.build buildOpts "")
72
73
let testTFM tfm =
74
exec "dotnet" $"test --blame --blame-hang-timeout 60s --no-build --framework {tfm} --logger trx --logger GitHubActions -c Release .\\test\\Ionide.ProjInfo.Tests\\Ionide.ProjInfo.Tests.fsproj" "."
0 commit comments