File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Fake.Core.CommandLineParsing/docopt.fs/Docopt
Fake.DotNet.AssemblyInfoFile Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -93,19 +93,19 @@ type UsageAstBuilder =
9393
9494 member x.UsageTag =
9595 match x with
96- | UsageAstBuilder.Eps _ -> Tag.Eps
96+ | UsageAstBuilder.Eps -> Tag.Eps
9797 | UsageAstBuilder.Ano _ -> Tag.Ano
9898 | UsageAstBuilder.Sop _ -> Tag.Sop
9999 | UsageAstBuilder.Lop _ -> Tag.Lop
100100 | UsageAstBuilder.Sqb _ -> Tag.Sqb
101101 | UsageAstBuilder.Req _ -> Tag.Req
102102 | UsageAstBuilder.Arg _ -> Tag.Arg
103- | UsageAstBuilder.XorEmpty _ -> Tag.Xor
103+ | UsageAstBuilder.XorEmpty -> Tag.Xor
104104 | UsageAstBuilder.Xor _ -> Tag.Xor
105105 | UsageAstBuilder.Seq _ -> Tag.Seq
106106 | UsageAstBuilder.Cmd _ -> Tag.Cmd
107107 | UsageAstBuilder.Ell _ -> Tag.Ell
108- | UsageAstBuilder.Sdh _ -> Tag.Sdh
108+ | UsageAstBuilder.Sdh -> Tag.Sdh
109109
110110and UsageAstCell =
111111 { mutable Content: UsageAstBuilder option }
Original file line number Diff line number Diff line change @@ -360,15 +360,15 @@ module AssemblyInfoFile =
360360 |> Seq.tryFind ( fun ( attr : Attribute ) -> attr.Name = " AssemblyVersion" )
361361 with
362362 | Some attr -> attr.Value
363- | None _ -> " \" " + BuildServer.buildVersion + " \" "
363+ | None -> " \" " + BuildServer.buildVersion + " \" "
364364
365365 let private getAssemblyInformationalVersion attributes =
366366 match
367367 attributes
368368 |> Seq.tryFind ( fun ( attr : Attribute ) -> attr.Name = " AssemblyInformationalVersion" )
369369 with
370370 | Some attr -> attr.Value
371- | None _ -> getAssemblyVersionInfo attributes
371+ | None -> getAssemblyVersionInfo attributes
372372
373373 let private getSortedAndNumberedAttributes ( attrs : seq < Attribute >) =
374374 attrs
You can’t perform that action at this time.
0 commit comments