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);
        }
示例#3
0
 void CopyRawFileToOutputDirectory(BundleCollection bundles)
 {
     bundles.Accept(new RawFileCopier(sourceDirectory, outputDirectory));
 }
示例#4
0
 void CopyRawFileToOutputDirectory(BundleCollection bundles)
 {
     bundles.Accept(new RawFileCopier(sourceDirectory, outputDirectory));
 }