Skip to content

Commit 8001b19

Browse files
committed
Release nuget
1 parent 4ae1ade commit 8001b19

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ docs/output/*
4848
*.ncrunchsolution
4949
tmp.bin
5050
tmp.txt
51+
docs/tools/FSharp.Formatting.svclog

build.fsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let packagesDir = "./packages"
1818
let projectDesc = "FSharpx.Extras implements general functional constructs on top of the F# core library. Its main target is F# but it aims to be compatible with all .NET languages wherever possible."
1919

2020
let rec getPackageDesc = function
21-
| "FSharpx.Text.StructuredFormat" -> projectDesc + "\r\n\r\nThis library provides data structures and functoins for pretty printers."
21+
| "FSharpx.Text.StructuredFormat" -> projectDesc + "\r\n\r\nThis library provides data structures and functins for pretty printers."
2222
| _ -> projectDesc + "\r\n\r\nIt currently implements:\r\n\r\n" +
2323
"* Several standard monads: State, Reader, Writer, Either, Continuation, Distribution\r\n" +
2424
"* Validation applicative functor\r\n" +
@@ -105,6 +105,10 @@ Target "PaketPack" (fun _ ->
105105
})
106106
)
107107

108+
Target "PaketPush" (fun _ ->
109+
Paket.Push id
110+
)
111+
108112
// --------------------------------------------------------------------------------------
109113
// Generate the documentation
110114

@@ -150,6 +154,8 @@ Target "CI" DoNothing
150154
"Build"
151155
==> "GenerateDocs"
152156
==> "ReleaseDocs"
157+
==> "PaketPack"
158+
==> "PaketPush"
153159
==> "Release"
154160

155161
"Test"

0 commit comments

Comments
 (0)