protected AbpTagHelperResourceService(
        IBundleManager bundleManager,
        IOptions <AbpBundlingOptions> options,
        IWebHostEnvironment hostingEnvironment)
    {
        BundleManager      = bundleManager;
        HostingEnvironment = hostingEnvironment;
        Options            = options.Value;

        Logger = NullLogger <AbpTagHelperResourceService> .Instance;
    }
Esempio n. 2
0
    protected BundlerBase(
        IWebHostEnvironment hostEnvironment,
        IMinifier minifier,
        IOptions <AbpBundlingOptions> bundlingOptions)
    {
        HostEnvironment = hostEnvironment;
        Minifier        = minifier;
        BundlingOptions = bundlingOptions.Value;

        Logger = NullLogger <BundlerBase> .Instance;
    }
Esempio n. 3
0
    public BundleManager(
        IOptions <AbpBundlingOptions> options,
        IOptions <AbpBundleContributorOptions> contributorOptions,
        IScriptBundler scriptBundler,
        IStyleBundler styleBundler,
        IWebHostEnvironment hostingEnvironment,
        IServiceProvider serviceProvider,
        IDynamicFileProvider dynamicFileProvider,
        IBundleCache bundleCache,
        IWebRequestResources requestResources)
    {
        Options             = options.Value;
        ContributorOptions  = contributorOptions.Value;
        HostingEnvironment  = hostingEnvironment;
        ScriptBundler       = scriptBundler;
        ServiceProvider     = serviceProvider;
        DynamicFileProvider = dynamicFileProvider;
        BundleCache         = bundleCache;
        RequestResources    = requestResources;
        StyleBundler        = styleBundler;

        Logger = NullLogger <BundleManager> .Instance;
    }