Table of Contents

Class BundleConfiguration<TBundler>

Namespace
Kentico.Content.Web.Mvc
Assembly
Kentico.Content.Web.Mvc.dll

Represents the configuration of a bundle.

public class BundleConfiguration<TBundler>

Type Parameters

TBundler

Type of the bundler.

Inheritance
object
BundleConfiguration<TBundler>
Extension Methods

Properties

Contents

Gets or sets the contents of the bundle described by TBundler. The contents of the bundle are enumerated when no bundle file is found on the WebRootBundlePath.

public TBundler Contents { get; set; }

Property Value

TBundler

WebRootBundlePath

Gets or sets the path of the bundle within web root (i.e. where the bundled contents of the bundle reside). If no bundle file is found on this path, the individual files (as described by the Contents property) are enumerated and linked.

public string WebRootBundlePath { get; set; }

Property Value

string

Remarks

Removing the resulting bundle file from the file system can help during debugging as the individual files are linked instead.

See Also