hi
Thank you!
We have to remove the Accept-Encoding header.
The solution is:
// Blazor server mode
client.BaseAddress = new Uri(NavigationManager.BaseUri);
foreach (var header in HttpContextAccessor.HttpContext!.Request.Headers.Where(x => x.Key != "Accept-Encoding"))
{
requestMessage.Headers.TryAddWithoutValidation(header.Key, header.Value.ToArray());
}
hi
I think there are some problems with your license after renewal. I will give feedback to the team, and they will check and reply to you as soon as possible.
hi
Join and share your screen. https://us05web.zoom.us/j/87676059000?pwd=ETFSLUO4LnpqoQZNKRcmrHlIL4Zk51.1
hi
Please check your Nuget.Config file.
You can see your latest API Key.
https://commercial.abp.io/my-organizations/
If you recently purchased abp, you can try to log out and log in again.
abp logout
abp login
C:\Users\malim\Downloads>abp new Maliming -u blazor-server -csf
ABP CLI 7.4.2
Creating your project...
Project name: Maliming
UI Framework: BlazorServer
Output folder: C:\Users\malim\Downloads\Maliming
Downloading template: app-pro, version: 7.4.2
Theme: LeptonX
Theme Style: System
Check out the documents at https://docs.abp.io/en/commercial/latest
'Maliming' has been successfully created to 'C:\Users\malim\Downloads\Maliming'
Creating initial migrations...
^C
C:\Users\malim\Downloads>cd Maliming
C:\Users\malim\Downloads\Maliming>dotnet restore
Determining projects to restore...
Restored C:\Users\malim\Downloads\Maliming\test\Maliming.TestBase\Maliming.TestBase.csproj (in 6.77 sec).
Restored C:\Users\malim\Downloads\Maliming\src\Maliming.Application.Contracts\Maliming.Application.Contracts.csproj (
in 6.75 sec).
Restored C:\Users\malim\Downloads\Maliming\src\Maliming.HttpApi\Maliming.HttpApi.csproj (in 7.12 sec).
Restored C:\Users\malim\Downloads\Maliming\test\Maliming.HttpApi.Client.ConsoleTestApp\Maliming.HttpApi.Client.Consol
eTestApp.csproj (in 7.13 sec).
Restored C:\Users\malim\Downloads\Maliming\src\Maliming.HttpApi.Client\Maliming.HttpApi.Client.csproj (in 7.51 sec).
Restored C:\Users\malim\Downloads\Maliming\src\Maliming.DbMigrator\Maliming.DbMigrator.csproj (in 7.61 sec).
Restored C:\Users\malim\Downloads\Maliming\test\Maliming.EntityFrameworkCore.Tests\Maliming.EntityFrameworkCore.Tests
.csproj (in 7.85 sec).
Restored C:\Users\malim\Downloads\Maliming\test\Maliming.Domain.Tests\Maliming.Domain.Tests.csproj (in 7.87 sec).
Restored C:\Users\malim\Downloads\Maliming\src\Maliming.Application\Maliming.Application.csproj (in 8.32 sec).
Restored C:\Users\malim\Downloads\Maliming\test\Maliming.Application.Tests\Maliming.Application.Tests.csproj (in 9.62
sec).
Restored C:\Users\malim\Downloads\Maliming\src\Maliming.Blazor\Maliming.Blazor.csproj (in 15.55 sec).
3 of 14 projects are up-to-date for restore.
hi
Can you get the : error NU1101: Unable to find package Volo.Abp.Op enIddict.Pro.Domain.Shared. error in a new template project?
If so, you can share the steps and code.
hi
Can you share a simple project to reproduce?
liming.ma@volosoft.com
hi
What is your abp version? Which module's localization files do you need?
liming.ma@volosoft.com
hi
Please share the logs of this request.
Set minimum log level to Debug
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
You can share your project to liming.ma@volosoft.com
hi
Can you set the MinimumLevel to Debug?
Thanks.
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();