Skip to content

Commit

Permalink
Don't remove placeholder from file view - fixes #2469
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jun 28, 2017
1 parent c1dc1e6 commit 9d7a564
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 @@
#### 5.2.4 - 28.06.2017
* BUGFIX: Don't remove placeholder from file view - https://github.com/fsprojects/Paket/issues/2469

#### 5.2.3 - 27.06.2017
* BUGFIX: Automatic restore in VS should also work with bootstraper

Expand Down
2 changes: 1 addition & 1 deletion src/Paket.Core/Dependencies/NuGet.fs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ let GetLibFiles(targetFolder) =
|> Array.append runtimeLibs
|> Array.filter (fun p ->
let ext = System.IO.Path.GetExtension p.FullPath
".dll".Equals(ext, StringComparison.OrdinalIgnoreCase))
ext = "._" || ".dll".Equals(ext, StringComparison.OrdinalIgnoreCase))

/// Finds all targets files in a nuget package.
let GetTargetsFiles(targetFolder, (pkg : PackageName)) =
Expand Down

0 comments on commit 9d7a564

Please sign in to comment.