In a Blazor WASM app, I had some buttons that were being styled perfectly. However, after I upgraded to .net6, they are now appearing as plain text. Here is my index.html:
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Oracle WCON</title>
<base rel='nofollow' href="/" />
<link rel='nofollow' href="css/app.css" rel="stylesheet" />
<link rel='nofollow' href="OracleWCON.Client.styles.css" rel="stylesheet" />
<link rel='nofollow' rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
</head>
When I inspect the page when it is rendered, in the sources tab it shows as bootstrap4:
Thanks in advance