public void DeleteSettingsForFileVersion(string fileVersion)
        {
            string collectionPath = Path.Combine(CollectionPathPrefix, fileVersion);

            if (remoteSettingsStorage.CollectionExists(collectionPath))
            {
                remoteSettingsStorage.DeleteCollection(collectionPath);
            }
        }