public AssemblyProcessorInfo(string typeName, ContentProcessorAttribute attribute, Assembly assembly)
     : base(typeName, attribute)
 {
     Assembly = assembly;
 }
 public AssemblyReferenceProcessorInfo(string typeName, ContentProcessorAttribute attribute, IAssemblyReference assemblyReference)
     : base(typeName, attribute)
 {
     AssemblyReference = assemblyReference;
 }
Пример #3
0
 protected ProcessorInfoBase(string typeName, ContentProcessorAttribute attribute)
 {
     TypeName = typeName;
     DisplayName = attribute.DisplayName;
 }