Skip to main content
All docs
V26.1
  • ApplicationOptions.UseIntegratedClientSideResources Property

    Specifies whether to use integrated client-side resources.

    Namespace: DevExpress.AspNetCore

    Assembly: DevExpress.AspNetCore.Common.v26.1.dll

    Declaration

    public bool UseIntegratedClientSideResources { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true to use integrated client-side resources; otherwise, false.

    Remarks

    If you publish your application as a single file, set the property to false:

    // ...
    builder.Services.AddDevExpressControls(options => {
        options.UseIntegratedClientSideResources = false;
    });
    // ...
    

    If you set the UseIntegratedClientSideResources property to false, the Resource Management Mechanism is disabled completely. For the application to work correctly, use npm to load client-side DevExpress resources.

    See Also