We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e9152 commit 811a31eCopy full SHA for 811a31e
1 file changed
build.fsx
@@ -136,7 +136,7 @@ Target.create "Clean" (fun _ ->
136
137
Target.create "Compile" (fun _ ->
138
let options (o : DotNet.BuildOptions) =
139
- let v = sprintf "%d.%d.%d.%s" notes.SemVer.Major notes.SemVer.Minor notes.SemVer.Patch (string notes.SemVer.Build)
+ let v = sprintf "%d.%d.0.0" notes.SemVer.Major notes.SemVer.Minor
140
{ o with
141
Configuration = DotNet.BuildConfiguration.Release
142
@@ -151,6 +151,7 @@ Target.create "Compile" (fun _ ->
151
"AssemblyFileVersion", v
152
"ProductVersion", v
153
"InformationalVersion", v
154
+ "PackageVersion", notes.SemVer.AsString
155
]
156
}
157
0 commit comments