Skip to content

Commit

Permalink
Detect Net20-client - fixes #547
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jan 14, 2015
1 parent 50dd1f4 commit 63fbe08
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.22.11 - 14.01.2015
* BUGFIX: Detect `Net20-client` - https://github.com/fsprojects/Paket/issues/547

#### 0.22.10 - 13.01.2015
* BUGFIX: Give better error message when package is not found in a local feed - https://github.com/fsprojects/Paket/issues/545

Expand Down
2 changes: 1 addition & 1 deletion src/Paket.Core/FrameworkHandling.fs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ module FrameworkDetection =
match path with
| "net10" | "net1" | "10" -> Some (DotNetFramework FrameworkVersion.V1)
| "net11" | "11" -> Some (DotNetFramework FrameworkVersion.V1_1)
| "net20" | "net2" | "net" | "net20-full" | "20" -> Some (DotNetFramework FrameworkVersion.V2)
| "net20" | "net2" | "net" | "net20-full" | "net20-client" | "20" -> Some (DotNetFramework FrameworkVersion.V2)
| "net35" | "net35-full" | "35" -> Some (DotNetFramework FrameworkVersion.V3_5)
| "net40" | "net4" | "40" | "net40-client" | "net4-client" -> Some (DotNetFramework FrameworkVersion.V4_Client)
| "net40-full" | "net403" -> Some (DotNetFramework FrameworkVersion.V4)
Expand Down

0 comments on commit 63fbe08

Please sign in to comment.