Breaking Change T850893
Visible to All Users

Location of DevExpress resources has been changed

In previous versions, we used our internal mechanism to share components. In v19.2.1, we migrated to a RCL (Razor class library) to use a native way of resource sharing.

DevExpress files included in the RCL's wwwroot folder are exposed to your application under the following prefix: _content/DevExpress.Blazor/. So, the dx-blazor.css file that you should register manually is now located at _content/DevExpress.Blazor/dx-blazor.css instead of lib/dx-blazor/dx-blazor.css

Update the link to this stylesheet file in your layout's HEAD section:

  • In the _Host.cshtml file for server-side Blazor.
  • In the index.html file for client-side Blazor.

Old

Razor
<head> ... <link href="lib/dx-blazor/dx-blazor.css" rel="stylesheet" /> </head>

New

Razor
<head> ... <link href="_content/DevExpress.Blazor/dx-blazor.css" rel="stylesheet" /> </head>

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.