ApplicationOptions.UseIntegratedClientSideResources Property
Specifies whether to use integrated client-side resources.
Namespace: DevExpress.AspNetCore
Assembly: DevExpress.AspNetCore.Common.v24.2.dll
Declaration
public bool UseIntegratedClientSideResources { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
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