mirror of https://github.com/abpframework/abp.git
21 changed files with 53 additions and 46 deletions
@ -1,7 +1,20 @@ |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bundling |
|||
{ |
|||
public abstract class BundleContributor : IBundleContributor |
|||
public abstract class BundleContributor |
|||
{ |
|||
public abstract void ConfigureBundle(BundleConfigurationContext context); |
|||
public virtual void PreConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
|
|||
} |
|||
|
|||
public virtual void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
|
|||
} |
|||
|
|||
public virtual void PostConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Bundling |
|||
{ |
|||
public interface IBundleContributor |
|||
{ |
|||
void ConfigureBundle(BundleConfigurationContext context); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue