Skip to content

Commit

Permalink
Merge pull request #1667 from wallymathieu/master
Browse files Browse the repository at this point in the history
Blacklisting install.xdt and uninstall.xdt files
  • Loading branch information
forki committed May 9, 2016
2 parents 2233b75 + 6560088 commit 5283008
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Paket.Core/InstallProcess.fs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ let contentFileBlackList : list<(FileInfo -> bool)> = [
fun f -> f.Name.EndsWith ".pp"
fun f -> f.Name.EndsWith ".tt"
fun f -> f.Name.EndsWith ".ttinclude"
fun f -> f.Name.EndsWith ".install.xdt"
fun f -> f.Name.EndsWith ".uninstall.xdt"
]

let processContentFiles root project (usedPackages:Map<_,_>) gitRemoteItems options =
Expand Down

0 comments on commit 5283008

Please sign in to comment.