Hi is there any place i can get this information? just bought the good template on the bootstrap site and saw blazor was supported and i'm currently stuck because i'm not able to use this template with blazor wasm, if it's not supported, any chance i can get a refund?
Hi,
Unfortunately, at the moment, we do not have the Good Blazor Webassembly version, only Blazor Server.
You can create a new Blazor WASM project with the command dotnet new blazorwasm -o BlazorApp
and then reuse our premade components from Blazor Server Starterkit, copy components from Starterkit/Shared and page views from Starterkit/Pages. Let me know if you will need any further help.
If want to request a refund you can contact marketplace support via themes@getbootstrap.com.
Regards,
Lauris Stepanovs,
Keenthemes Support Team
yes definitely need more help, just by copying those two folders my project does not compile and i'm missing many items but i don't know and which to import for the remaining items
Hi,
_keenthemes folder and file themesettings.json must be copied as well.
From _keenthemes/tools folder you can build assets, as an output you should have assets folder in wwwroot.
I would suggest you instead of fully copying the Shared and Pages folder extract separate partials since in the Shared and Pages folder there are some .cshml
files which will not work in the Blazor WASM project so you have to extract them.
Also, you should remove our main page wrapper file Pages/_Master.cshtml, and include our main js, css files to index.html.
Mandatory css files:
<link href="assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css">
<link href="assets/css/style.bundle.css" rel="stylesheet" type="text/css">
<script src="assets/plugins/global/plugins.bundle.js"></script>
<script src="assets/js/scripts.bundle.js"></script>
Hello Lauris, I Have tried this approach and also follow this link that was posted : https://www.syncfusion.com/faq/blazor/general/how-do-i-convert-a-blazor-server-side-project-to-a-blazor-webassembly-project and have not been able to have this working, any chance you can provide a working sample? also, i haven't found themesettings.json this file
Hi,
Unfortunately, we cannot provide you a working Blazor WASM project
Do you have any errors in your current setup?
themesettings.json should be inside Starterkit folder, this file is required make sure that you have included it.
Regards,
Lauris Stepanovs,
Keenthemes Support Team
i don't have that file, can you provide it or a link where i can download a project that has it? i even download it again, and is not there
Hi,
Sorry, configuration in Good theme is inside appsettings.json
, you need to include Theme configuration property.
Regards,
Lauris Stepanovs,
Keenthemes Support Team