Skip to content

Commit

Permalink
Update build to rev the version and include source files in the nuspe…
Browse files Browse the repository at this point in the history
…c for symbolsource.org
  • Loading branch information
panesofglass committed Jun 30, 2011
1 parent 9160a00 commit 33b76e1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.fsx
Expand Up @@ -6,7 +6,7 @@ open System.IO

// properties
let projectName = "FSharp.Monad"
let version = "1.0.1"
let version = "1.1.0.1"
let projectSummary = "A monad library for F# projects."
let projectDescription = "A monad library for F# projects, including Maybe, State, Reader, Writer, Continuation, and MinLinq."
let authors = ["Ryan Riley"]
Expand Down Expand Up @@ -105,7 +105,7 @@ Target "BuildNuGet" (fun _ ->
CleanDirs [nugetDir; nugetLibDir; nugetDocsDir]

XCopy (docsDir |> FullName) nugetDocsDir
[buildDir + "FSharp.Monad.dll"]
[buildDir + "FSharp.Monad.dll"; buildDir + "FSharp.Monad.pdb"]
|> CopyTo nugetLibDir

NuGet (fun p ->
Expand Down
7 changes: 5 additions & 2 deletions fsharp.monad.nuspec
Expand Up @@ -9,8 +9,11 @@
<language>en-US</language>
<summary>@summary@</summary>
<projectUrl>http://github.com/panesofglass/FSharp.Monad</projectUrl>
<licenseUrl>http://github.com/panesofglass/FSharp.Monad/raw/dev/License.txt</licenseUrl>
<licenseUrl>http://github.com/panesofglass/FSharp.Monad/raw/master/License.txt</licenseUrl>
<tags>monad fsharp</tags>
@dependencies@
</metadata>
</package>
<files>
<file src="..\src\FSharp.Monad\**\*.fs" target="src" />
</files>
</package>

0 comments on commit 33b76e1

Please sign in to comment.