Fixed Sync to find new SQL Files

This commit is contained in:
Rich 2012-01-13 18:41:27 +00:00
parent 617f060bee
commit 59e34f756e

View File

@ -123,6 +123,10 @@ namespace Sync
XmlNodeList xl = doc.DocumentElement.SelectNodes(@"//ns:Compile/@Include",nsmgr);
foreach (XmlAttribute xa in xl)
retval.Add(xa.Value);
xl = doc.DocumentElement.SelectNodes(@"//ns:None/@Include", nsmgr);
foreach (XmlAttribute xa in xl)
if(xa.Value.ToUpper().EndsWith("SQL"))
retval.Add(xa.Value);
return retval;
}
private void AddToResults(FileInfo fiSS,FileInfo fiDev)