コード例 #1
0
 public ContentPlanner(IAssetCombinationCache combinations, IAssetFileGraph fileGraph,
                       ITransformerPolicyLibrary library)
 {
     _combinations = combinations;
     _fileGraph = fileGraph;
     _library = library;
 }
コード例 #2
0
ファイル: ContentPlanner.cs プロジェクト: rmueller/fubumvc
 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;
 }
コード例 #4
0
 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);
 }