/// <summary>
 /// Removes all the bundles from the collection and removes support for common conventions.
 /// </summary>
 /// <remarks>
 /// In addition to calling <see cref="Clear"/> on the collection, suport for common conventions is removed by also clearing
 /// <see cref="FileExtensionReplacementList"/>, <see cref="IgnoreList"/>, <see cref="DirectoryFilter"/>, and <see cref="FileSetOrderList"/>
 /// </remarks>
 public void ResetAll()
 {
     Clear();
     FileExtensionReplacementList.Clear();
     IgnoreList.Clear();
     DirectoryFilter.Clear();
     FileSetOrderList.Clear();
 }