File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -451,7 +451,8 @@ pipeline "Release" {
451451 let notes = getReleaseNotes currentRelease lastRelease
452452 let noteFile = Path.GetTempFileName()
453453 File.WriteAllText( noteFile, notes)
454- let files = [ yield ! nugetPackages; yield ! aotCompiledExecutableFiles ] |> String.concat " "
454+ let files =
455+ [ yield ! nugetPackages; yield ! aotCompiledExecutableFiles ] |> String.concat " "
455456
456457 // We create a draft release for minor and majors. Those that requires a manual publish.
457458 // This is to allow us to add additional release notes when it makes sense.
Original file line number Diff line number Diff line change @@ -135,8 +135,7 @@ let mkConstant (creationAide: CreationAide) c r : Constant =
135135 | SynConst.UInt64 v -> orElse ( v.ToString() + " uL" )
136136 | SynConst.Double v -> orElse ( v.ToString( " r" ))
137137 | SynConst.Single v -> orElse ( v.ToString( " r" ) + " f" )
138- | SynConst.Decimal v ->
139- orElse ( sprintf " %s M" ( v.ToString()))
138+ | SynConst.Decimal v -> orElse ( sprintf " %s M" ( v.ToString()))
140139 | SynConst.IntPtr v -> orElse ( v.ToString() + " n" )
141140 | SynConst.UIntPtr v -> orElse ( v.ToString() + " un" )
142141 | SynConst.UserNum( v, s) ->
You can’t perform that action at this time.
0 commit comments