All done by https://blazorise.com/docs/start.
DirectoryNotFoundException: Could not find a part of the path \wwwroot\_content
All done by https://blazorise.com/docs/start.
DirectoryNotFoundException: Could not find a part of the path \wwwroot\_content
It helps if you have another root path
var builder = WebApplication.CreateBuilder(new WebApplicationOptions
{
WebRootPath = "wwwroot",
Args = args
});
or use only
var builder = WebApplication.CreateBuilder(args);
then
builder.WebHost.UseStaticWebAssets();