File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -229,6 +229,15 @@ Target.create "BuildReleasePackages" (fun _ ->
229
229
ReleaseNotes = release.Notes |> String.toLines })
230
230
)
231
231
232
+ Target.create " BuildCIPackages" ( fun _ ->
233
+ Paket.pack( fun p ->
234
+ { p with
235
+ ToolType = ToolType.CreateLocalTool()
236
+ OutputPath = pkgDir
237
+ Version = sprintf " %s -appveyor.%s " release.NugetVersion BuildServer.appVeyorBuildVersion
238
+ ReleaseNotes = release.Notes |> String.toLines })
239
+ )
240
+
232
241
Target.create " PublishNuget" ( fun _ ->
233
242
Paket.push( fun p ->
234
243
{ p with
@@ -305,6 +314,7 @@ Target.create "CIBuild" ignore
305
314
Target.create " BuildOnly" ignore
306
315
Target.create " DotnetCoreBuild" ignore
307
316
317
+
308
318
" Clean"
309
319
==> " CleanDocs"
310
320
==> " AssemblyInfo"
@@ -339,15 +349,6 @@ Target.create "DotnetCoreBuild" ignore
339
349
==> " CopyBinaries"
340
350
==> " BuildOnly"
341
351
342
- " Clean"
343
- ==> " CleanDocs"
344
- ==> " AssemblyInfo"
345
- ==> " Build"
346
- ==> " CopyBinaries"
347
- ==> " RunTests"
348
- ==> " BuildReleasePackages"
349
- ==> " CIBuild"
350
-
351
352
" GenerateDocs"
352
353
==> " ReleaseDocsLocal"
353
354
You can’t perform that action at this time.
0 commit comments