Exemplo n.º 1
0
        public RuntimeMap(RuntimeDeployment deployment, RuntimeRegionSet regions)
        {
            Deployment = deployment;
            Regions    = regions;

            Catalog = new AggregateCatalog(
                from region in Regions
                from package in region.Packages
                select package.Catalog);
        }
Exemplo n.º 2
0
 internal AssemblyRegionCache(RuntimeRegionSet regions)
 {
     _regions = regions;
 }