From dceda08407bf10176502afb3ff222ca09543fa38 Mon Sep 17 00:00:00 2001 From: iFish Date: Wed, 26 Nov 2014 18:53:41 +0800 Subject: [PATCH] udpate DeployTools --- DeployTools/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeployTools/Program.cs b/DeployTools/Program.cs index 958791e..3951c87 100644 --- a/DeployTools/Program.cs +++ b/DeployTools/Program.cs @@ -407,7 +407,7 @@ namespace DeployTools static void CreateFileList() { var include = new[] { @".*\.*?\.(jpg|gif|png|html|js|svg|eot|ttf|woff|otf|css|ico)$" }; - var fileter = new[] { @"^(scripts|bin)\.*" }; + var fileter = new[] { @"^(scripts|bin|app_data)\.*" }; var allfiles = Directory.GetFiles(_sourceDirectory, "*.*", SearchOption.AllDirectories).ToDictionary(GetProjectSubPath, StringComparer.OrdinalIgnoreCase);