public void RemoveAssembly(string home, string[] filenames)
 {
     foreach (String f in filenames)
     {
         StructuredText t = _data.FindChild(Path.Combine(home, f));
         if (t != null)
         {
             _data.RemoveChild(t);
         }
     }
 }