Skip to content

Commit

Permalink
When paket skips a framework install because of custom nodes it shows…
Browse files Browse the repository at this point in the history
… a warning - references #316
  • Loading branch information
forki committed Oct 30, 2014
1 parent e98a74a commit 496ba7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 0.11.8 - 30.10.2014
* When paket skips a framework install because of custom nodes it shows a warning - https://github.com/fsprojects/Paket/issues/316

#### 0.11.7 - 30.10.2014
* Remove the namespaces from the nuspec parser - https://github.com/fsprojects/Paket/pull/315

Expand Down
2 changes: 1 addition & 1 deletion src/Paket.Core/ProjectFile.fs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ type ProjectFile =
|> Seq.fold (fun (model:InstallModel) kv ->
let installModel = completeModel.[kv.Key.ToLower()]
if this.HasCustomNodes(installModel) then
verbosefn " - custom nodes for %s ==> skipping" kv.Key
traceWarnfn " - custom nodes for %s ==> skipping" kv.Key
model
else model.MergeWith(completeModel.[kv.Key.ToLower()]))
(InstallModel.EmptyModel("",SemVer.Parse "0"))
Expand Down

0 comments on commit 496ba7b

Please sign in to comment.