From 6560088e2a462b627f6aa6ea477c84c430f61538 Mon Sep 17 00:00:00 2001 From: Oskar Gewalli Date: Sat, 7 May 2016 21:29:08 +0200 Subject: [PATCH] Blacklisting install.xdt and uninstall.xdt files --- src/Paket.Core/InstallProcess.fs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Paket.Core/InstallProcess.fs b/src/Paket.Core/InstallProcess.fs index 77d52451a4..bbf75287f8 100644 --- a/src/Paket.Core/InstallProcess.fs +++ b/src/Paket.Core/InstallProcess.fs @@ -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 =