hi
The error occur at _randevuWS.HastaneAraAsync(hastaneAraIstek);
Please share the HastaneAraAsync
method code.
Thanks.
You're welcome. : )
hi
This doesn't seem related to multi-tenancy. Are your customers isolated as tenants?
Can you share more details about your case?
Thanks.
hi
I debug with the default profile, and the hot reload also works.
"AbpSolution2.Blazor": {
"commandName": "Project",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:44329",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
I'll try to use your suggestion but not working.
Update the component(razor)
file, but it is not updated on the browser, right?
how can I use Blazor.Client as if it were a real Blazor WASM application?
The new Blazor template cannot fall back to Blazor WASM mode.
I need to use also debug with "Edit and continue" option on razor.cs files.
It also support that. sthist case.
Can you share a project that reproduces the hot reload not working
problem?
Thanks
hi
Why does your Hangfire need to use a JWT token?
Can you share some code?
Thanks.
hi
There are two projects
Blazor
and Blazor.Client
The Blazor
project will bootstrap the Blazor.Client
project.
So you need to run Blazor
project every time. It will also compile the Blazor.Client
project.
You can see my video https://streamable.com/k1edpj. The hot reload is working with Blazor
and Blazor.Client
Thanks.
hi
Can you try to add a new HotReload
profile?
See https://streamable.com/k1edpj
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "https://localhost:44329",
"sslPort": 44329
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"AbpSolution2.Blazor": {
"commandName": "Project",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:44329",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"HotReload": {
"commandName": "Executable",
"workingDirectory": "$(ProjectDir)",
"executablePath": "dotnet",
"commandLineArgs": "watch run debug --launch-profile AbpSolution2.Blazor"
}
}
}
hi
I think new project will support the hot reload
I will check it again
Thanks.
You're welcome. : )