-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
The PackageTasks.fs has set the filed DisableInternalBinLog of MSBuildParams to false, which results in a unsupported log file format error. Changing the msBuilParams to the following fixes the error:
let msBuildParams =
match pInfo.ReleaseNotes with
| Some r ->
{ p.MSBuildParams with
Properties =
([
"Version",pInfo.PackageVersionTag
"AssemblyVersion", pInfo.AssemblyVersion
"AssemblyInformationalVersion", pInfo.AssemblyVersion
"PackageReleaseNotes", (r.Notes |> String.concat "\r\n")
"TargetsForTfmSpecificContentInPackage", "" //https://github.com/dotnet/fsharp/issues/12320
]
@ p.MSBuildParams.Properties)
DisableInternalBinLog = true // this line here
}
| _ ->
{ p.MSBuildParams with
Properties =
([
"Version",pInfo.PackageVersionTag
"AssemblyVersion", pInfo.AssemblyVersion
"AssemblyInformationalVersion", pInfo.AssemblyVersion
"TargetsForTfmSpecificContentInPackage", "" //https://github.com/dotnet/fsharp/issues/12320
]
@ p.MSBuildParams.Properties)
DisableInternalBinLog = true // and this line here
}
Metadata
Metadata
Assignees
Labels
No labels