Skip to content

Commit

Permalink
Fix TypeProviders nuget package to have a dependency on FSharp.Core
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo Guerra committed May 6, 2012
1 parent 562f699 commit c37a357
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ let nugetDocsDir package = nugetDir package @@ "docs"

let packages = ["Core"; "Http"; "Observable"; "TypeProviders"]

let nugetDirHttp = "./nuget/Http/"
let nugetLibDirHttp = nugetDirHttp @@ "lib"
let nugetDocsDirHttp = nugetDirHttp @@ "docs"

let projectDesc = "FSharpx is a library for the .NET platform implementing 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."

let rec getPackageDesc = function
Expand Down Expand Up @@ -215,7 +211,7 @@ let nugetTarget = TargetTemplate (fun package ->
ToolPath = nugetPath
AccessKey = getBuildParamOrDefault "nugetkey" ""
Dependencies =
if package = "Core" || package = "TypeProviders" then p.Dependencies else
if package = "Core" then p.Dependencies else
[projectName + ".Core", RequireExactly (NormalizeVersion version)]
Publish = hasBuildParam "nugetkey" })
"FSharpx.Core.nuspec"
Expand Down

0 comments on commit c37a357

Please sign in to comment.