public void AddBundlesForUrlReferences(BundleCollection bundleCollection)
        {
            createdExternalBundles = new List<Bundle>();
            existingUrls = GetExistingUrls(bundleCollection);

            bundleCollection.Accept(this);

            bundleCollection.AddRange(createdExternalBundles);
        }
Exemplo n.º 2
0
        public void AddBundlesForUrlReferences(BundleCollection bundleCollection)
        {
            createdExternalBundles = new List <Bundle>();
            existingUrls           = GetExistingUrls(bundleCollection);

            bundleCollection.Accept(this);

            bundleCollection.AddRange(createdExternalBundles);
        }
Exemplo n.º 3
0
 void CopyRawFileToOutputDirectory(BundleCollection bundles)
 {
     bundles.Accept(new RawFileCopier(sourceDirectory, outputDirectory));
 }
Exemplo n.º 4
0
 void CopyRawFileToOutputDirectory(BundleCollection bundles)
 {
     bundles.Accept(new RawFileCopier(sourceDirectory, outputDirectory));
 }