Skip to content

Commit

Permalink
Fix install --hard for FSharp.Core - fixes #579
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Feb 3, 2015
1 parent 120741c commit 8b0e1bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 0.26.5 - 03.02.2015
* Fix `paket install --hard` for FSharp.Core - https://github.com/fsprojects/Paket/issues/579

#### 0.26.4 - 02.02.2015
* Create a install function in the api which takes a `paket.dependencies` file as text - https://github.com/fsprojects/Paket/issues/576

Expand Down
1 change: 1 addition & 0 deletions src/Paket.Core/ProjectFile.fs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ type ProjectFile =
let isFrameworkNode = ref true
for child in node.ChildNodes do
if child.Name = "HintPath" then isFrameworkNode := false
if child.Name = "Private" then isFrameworkNode := false

not !isFrameworkNode)

Expand Down

0 comments on commit 8b0e1bb

Please sign in to comment.