Browse Source

Build FAKE: generate NuGet packages

pull/197/head
Christoph Ruegg 13 years ago
parent
commit
cc572d9182
  1. 5
      build.fsx

5
build.fsx

@ -59,7 +59,10 @@ Target "Docs" DoNothing
// NUGET
Target "NuGet" DoNothing
Target "NuGet" (fun _ ->
// TODO: Replace with FAKE's internal NuGet support and drop the MSBuild project
!! "build/NuGet/nuget.proj" |> MSBuild "" "BuildPackages" [] |> ignore
)
"BuildFull" ==> "NuGet"

Loading…
Cancel
Save