File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -451,7 +451,8 @@ pipeline "Release" {
451
451
let notes = getReleaseNotes currentRelease lastRelease
452
452
let noteFile = Path.GetTempFileName()
453
453
File.WriteAllText( noteFile, notes)
454
- let files = [ yield ! nugetPackages; yield ! aotCompiledExecutableFiles ] |> String.concat " "
454
+ let files =
455
+ [ yield ! nugetPackages; yield ! aotCompiledExecutableFiles ] |> String.concat " "
455
456
456
457
// We create a draft release for minor and majors. Those that requires a manual publish.
457
458
// 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 =
135
135
| SynConst.UInt64 v -> orElse ( v.ToString() + " uL" )
136
136
| SynConst.Double v -> orElse ( v.ToString( " r" ))
137
137
| 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()))
140
139
| SynConst.IntPtr v -> orElse ( v.ToString() + " n" )
141
140
| SynConst.UIntPtr v -> orElse ( v.ToString() + " un" )
142
141
| SynConst.UserNum( v, s) ->
You can’t perform that action at this time.
0 commit comments