@@ -30,6 +30,7 @@ let pack = BuildTask.create "Pack" [ clean; build; runTestsAll ] {
3030 " TargetsForTfmSpecificContentInPackage" , " " //https://github.com/dotnet/fsharp/issues/12320
3131 ]
3232 @ p.MSBuildParams.Properties)
33+ DisableInternalBinLog = true
3334 }
3435 | _ ->
3536 { p.MSBuildParams with
@@ -41,6 +42,7 @@ let pack = BuildTask.create "Pack" [ clean; build; runTestsAll ] {
4142 " TargetsForTfmSpecificContentInPackage" , " " //https://github.com/dotnet/fsharp/issues/12320
4243 ]
4344 @ p.MSBuildParams.Properties)
45+ DisableInternalBinLog = true
4446 }
4547
4648
@@ -49,7 +51,7 @@ let pack = BuildTask.create "Pack" [ clean; build; runTestsAll ] {
4951 OutputPath = Some pkgDir
5052 NoBuild = true
5153 }
52- |> DotNet.Options.withCustomParams ( Some " --no-dependencies" )
54+ |> DotNet.Options.withCustomParams ( Some " --no-dependencies -tl " )
5355 )
5456 else
5557 failwith " aborted"
@@ -84,6 +86,7 @@ let packPrerelease =
8486 " PackageReleaseNotes" , ( r.Notes |> String.concat " \r\n " )
8587 " TargetsForTfmSpecificContentInPackage" , " " //https://github.com/dotnet/fsharp/issues/12320
8688 ])
89+ DisableInternalBinLog = true
8790 }
8891 | _ ->
8992 { p.MSBuildParams with
@@ -94,6 +97,7 @@ let packPrerelease =
9497 " InformationalVersion" , pInfo.AssemblyInformationalVersion
9598 " TargetsForTfmSpecificContentInPackage" , " " //https://github.com/dotnet/fsharp/issues/12320
9699 ])
100+ DisableInternalBinLog = true
97101 }
98102
99103 { p with
@@ -102,7 +106,7 @@ let packPrerelease =
102106 MSBuildParams = msBuildParams
103107 NoBuild = true
104108 }
105- |> DotNet.Options.withCustomParams ( Some " --no-dependencies" )
109+ |> DotNet.Options.withCustomParams ( Some " --no-dependencies -tl " )
106110 )
107111 else
108112 failwith " aborted"
0 commit comments