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. : )
hi
Should the appsettings.secrets.json file be included when deploying the application to client environments?
Yes, You should include it.
The license code in appsettings.secrets.json
is different from API Key
.
Resetting the API key will not affect the License code.
Thanks.
hi
The API Key is the token of PRO packages hosted on nuget.abp.io. Your private NuGet source is https://nuget.abp.io/your_key/v3/index.json This is automatically added as a feed to your NuGet.Config in your ABP solution. Do not share your private key with unauthorized users!
If you reset it, the previous key will no longer be able to restore packages from nuget.abp.io.
The live system will not be affected since it does not need to restore the packages.
You can send an email to info@abp.io to request a reset.
Please include your organization's info in the mail.
Thanks.
hi
Thanks, can you share a simple project?
liming.ma@volosoft.com
Thanks.
hi
How can I reproduce this?
Can you share some code and steps
Thanks.
hi
Can you share a template project to reproduce the problem?
You can also disable Dynamic Claims
in all projects and try again.
https://abp.io/docs/latest/framework/fundamentals/dynamic-claims#enabling-disabling-the-dynamic-claims
Thanks.