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 =
93
93
94
94
member x.UsageTag =
95
95
match x with
96
- | UsageAstBuilder.Eps _ -> Tag.Eps
96
+ | UsageAstBuilder.Eps -> Tag.Eps
97
97
| UsageAstBuilder.Ano _ -> Tag.Ano
98
98
| UsageAstBuilder.Sop _ -> Tag.Sop
99
99
| UsageAstBuilder.Lop _ -> Tag.Lop
100
100
| UsageAstBuilder.Sqb _ -> Tag.Sqb
101
101
| UsageAstBuilder.Req _ -> Tag.Req
102
102
| UsageAstBuilder.Arg _ -> Tag.Arg
103
- | UsageAstBuilder.XorEmpty _ -> Tag.Xor
103
+ | UsageAstBuilder.XorEmpty -> Tag.Xor
104
104
| UsageAstBuilder.Xor _ -> Tag.Xor
105
105
| UsageAstBuilder.Seq _ -> Tag.Seq
106
106
| UsageAstBuilder.Cmd _ -> Tag.Cmd
107
107
| UsageAstBuilder.Ell _ -> Tag.Ell
108
- | UsageAstBuilder.Sdh _ -> Tag.Sdh
108
+ | UsageAstBuilder.Sdh -> Tag.Sdh
109
109
110
110
and UsageAstCell =
111
111
{ mutable Content: UsageAstBuilder option }
Original file line number Diff line number Diff line change @@ -360,15 +360,15 @@ module AssemblyInfoFile =
360
360
|> Seq.tryFind ( fun ( attr : Attribute ) -> attr.Name = " AssemblyVersion" )
361
361
with
362
362
| Some attr -> attr.Value
363
- | None _ -> " \" " + BuildServer.buildVersion + " \" "
363
+ | None -> " \" " + BuildServer.buildVersion + " \" "
364
364
365
365
let private getAssemblyInformationalVersion attributes =
366
366
match
367
367
attributes
368
368
|> Seq.tryFind ( fun ( attr : Attribute ) -> attr.Name = " AssemblyInformationalVersion" )
369
369
with
370
370
| Some attr -> attr.Value
371
- | None _ -> getAssemblyVersionInfo attributes
371
+ | None -> getAssemblyVersionInfo attributes
372
372
373
373
let private getSortedAndNumberedAttributes ( attrs : seq < Attribute >) =
374
374
attrs
You can’t perform that action at this time.
0 commit comments