Skip to content

Commit

Permalink
ALL build target
Browse files Browse the repository at this point in the history
  • Loading branch information
mausch committed Dec 5, 2010
1 parent 7fbffca commit 9fd45cd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.fsx
Expand Up @@ -249,12 +249,14 @@ Target "BuildAll" DoNothing
Target "TestAndRelease" DoNothing Target "TestAndRelease" DoNothing
Target "BuildAndRelease" DoNothing Target "BuildAndRelease" DoNothing
Target "NuGet.All" DoNothing Target "NuGet.All" DoNothing
Target "All" DoNothing


"Test" <== ["BuildAll"] "Test" <== ["BuildAll"]
"BuildAll" <== ["Build";"Merge";"BuildSample"] "BuildAll" <== ["Build";"Merge";"BuildSample"]
"BuildAndRelease" <== ["Clean";"Version";"BuildAll";"Docs";"ReleasePackage"] "BuildAndRelease" <== ["Clean";"Version";"BuildAll";"Docs";"ReleasePackage"]
"TestAndRelease" <== ["Clean";"Version";"Test";"ReleasePackage"] "TestAndRelease" <== ["Clean";"Version";"Test";"ReleasePackage"]
"NuGet" <== ["Clean";"Build";"BasicMerge";"Docs"] "NuGet" <== ["Clean";"Build";"BasicMerge";"Docs"]
"NuGet.All" <== (getAllTargetsNames() |> List.filter ((<*) "NuGet") |> List.filter ((<>) "NuGet.All") |> List.sort) "NuGet.All" <== (getAllTargetsNames() |> List.filter ((<*) "NuGet") |> List.filter ((<>) "NuGet.All") |> List.sort)
"All" <== ["BuildAndRelease";"PackageSampleApp";"NuGet.All"]


Run target Run target

0 comments on commit 9fd45cd

Please sign in to comment.