Fixed Sync to find new SQL Files
This commit is contained in:
parent
617f060bee
commit
59e34f756e
@ -123,6 +123,10 @@ namespace Sync
|
|||||||
XmlNodeList xl = doc.DocumentElement.SelectNodes(@"//ns:Compile/@Include",nsmgr);
|
XmlNodeList xl = doc.DocumentElement.SelectNodes(@"//ns:Compile/@Include",nsmgr);
|
||||||
foreach (XmlAttribute xa in xl)
|
foreach (XmlAttribute xa in xl)
|
||||||
retval.Add(xa.Value);
|
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;
|
return retval;
|
||||||
}
|
}
|
||||||
private void AddToResults(FileInfo fiSS,FileInfo fiDev)
|
private void AddToResults(FileInfo fiSS,FileInfo fiDev)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user