Example #1
0
 public AssemblyLoader(IAssemblyMetadata import, BundleLoader load) : base(load)
 {
     if (import == null)
     {
         throw new ArgumentNullException();
     }
     Import = import;
 }
Example #2
0
 public DependencyAssemblyLoader(IDependentAssemblyConstraint dependentAssemblyConstraint, BundleLoader load) : base(load)
 {
     DependentAssembly = dependentAssemblyConstraint;
 }