Skip to content

Commit

Permalink
Added flag to disable in proc node
Browse files Browse the repository at this point in the history
  • Loading branch information
sacOO7 committed Mar 28, 2024
1 parent 0102d40 commit 663ccbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-script/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ let initTargets (argv) =
Configuration = configuration
MSBuildParams =
{ opts.MSBuildParams with
Properties = [ "DefineConstants", compilationConstant ]
DisableInternalBinLog = true } })
DisableInternalBinLog = true
Properties = [ "DefineConstants", compilationConstant; "DisableInProcNode", true ] } })

Check failure on line 372 in build-script/build.fs

View workflow job for this annotation

GitHub Actions / check (net6.0)

This expression was expected to have type� 'string' �but here has type� 'bool'

Check failure on line 372 in build-script/build.fs

View workflow job for this annotation

GitHub Actions / check

This expression was expected to have type� 'string' �but here has type� 'bool'

Check failure on line 372 in build-script/build.fs

View workflow job for this annotation

GitHub Actions / check (net6.0)

This expression was expected to have type� 'string' �but here has type� 'bool'

Check failure on line 372 in build-script/build.fs

View workflow job for this annotation

GitHub Actions / check (net7.0)

This expression was expected to have type� 'string' �but here has type� 'bool'

Check failure on line 372 in build-script/build.fs

View workflow job for this annotation

GitHub Actions / check (net7.0)

This expression was expected to have type� 'string' �but here has type� 'bool'

Check failure on line 372 in build-script/build.fs

View workflow job for this annotation

GitHub Actions / check (net7.0)

This expression was expected to have type� 'string' �but here has type� 'bool'
NetStandardSolution)

Target.create "NetStandard - Unit Tests" (fun _ -> runStandardTests UnitTests |> ignore)
Expand Down

0 comments on commit 663ccbb

Please sign in to comment.