public void AddBundlesForUrlReferences(BundleCollection bundleCollection) { createdExternalBundles = new List<Bundle>(); existingUrls = GetExistingUrls(bundleCollection); bundleCollection.Accept(this); bundleCollection.AddRange(createdExternalBundles); }
public void AddBundlesForUrlReferences(BundleCollection bundleCollection) { createdExternalBundles = new List <Bundle>(); existingUrls = GetExistingUrls(bundleCollection); bundleCollection.Accept(this); bundleCollection.AddRange(createdExternalBundles); }
void CopyRawFileToOutputDirectory(BundleCollection bundles) { bundles.Accept(new RawFileCopier(sourceDirectory, outputDirectory)); }