Skip to content

Commit

Permalink
Visual C++ support in binding redirects - references #1467
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Feb 9, 2016
1 parent b8bfd1e commit 0093208
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
@@ -1,3 +1,6 @@
#### 2.50.1 - 09.02.2016
* Experimental Visual C++ support in binding redirects - https://github.com/fsprojects/Paket/issues/1467

#### 2.50.0 - 09.02.2016
* Experimental Visual C++ support - https://github.com/fsprojects/Paket/issues/1467
* BUGFIX: Install packages that end in .dll - https://github.com/fsprojects/Paket/issues/1466
Expand Down
2 changes: 1 addition & 1 deletion src/Paket.Core/BindingRedirects.fs
Expand Up @@ -83,7 +83,7 @@ let internal indentAssemblyBindings config =
parent.Remove()

let private configFiles = [ "app"; "web" ] |> Set.ofList
let private projectFiles = [ ".csproj"; ".vbproj"; ".fsproj"; ".wixproj"; ".nproj" ] |> Set.ofList
let private projectFiles = [ ".csproj"; ".vbproj"; ".fsproj"; ".wixproj"; ".nproj"; ".vcxproj" ] |> Set.ofList
let private toLower (s:string) = s.ToLower()
let private isAppOrWebConfig = configFiles.Contains << (Path.GetFileNameWithoutExtension >> toLower)
let private isDotNetProject = projectFiles.Contains << (Path.GetExtension >> toLower)
Expand Down

0 comments on commit 0093208

Please sign in to comment.