Skip to content

Commit

Permalink
Define path to nuget when restoring packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bdukes committed Sep 28, 2015
1 parent 3b8cd02 commit f6983b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ Target "RestorePackages" (fun _ ->
(srcDir + "packages.config")
|> RestorePackage (fun p ->
{ p with
OutputPath = (srcDir + "packages") })
OutputPath = (srcDir + "packages")
ToolPath = (findNuget (rootDir + ".nuget")) })
)

Target "Build" (fun _ ->
Expand Down

0 comments on commit f6983b4

Please sign in to comment.