예제 #1
0
 public ContentPlanner(IAssetCombinationCache combinations, IAssetFileGraph fileGraph,
                       ITransformerPolicyLibrary library)
 {
     _combinations = combinations;
     _fileGraph = fileGraph;
     _library = library;
 }
예제 #2
0
 public ContentPlanner(IAssetCombinationCache combinations, IAssetPipeline pipeline,
                       ITransformerPolicyLibrary library)
 {
     _combinations = combinations;
     _pipeline = pipeline;
     _library = library;
 }
예제 #3
0
 public ContentPlanner(IAssetCombinationCache combinations, IAssetPipeline pipeline,
     ITransformerPolicyLibrary library)
 {
     _combinations = combinations;
     _pipeline = pipeline;
     _library = library;
 }
 public ContentPlanner(IAssetCombinationCache combinations, IAssetFileGraph fileGraph,
                       ITransformerPolicyLibrary library)
 {
     _combinations = combinations;
     _fileGraph    = fileGraph;
     _library      = library;
 }
예제 #5
0
 public TransformerRequirements(ITransformerPolicyLibrary library)
 {
     _library  = library;
     _policies = new Cache <AssetFile, Queue <ITransformerPolicy> >(findPolicies);
 }
예제 #6
0
 public TransformerRequirements(ITransformerPolicyLibrary library)
 {
     _library = library;
     _policies = new Cache<AssetFile, Queue<ITransformerPolicy>>(findPolicies);
 }