hi
There is no such template. But you can check the console template code .
https://github.com/abpframework/abp/tree/dev/templates/console https://docs.abp.io/en/abp/latest/Startup-Templates/Console
hi
Abp doesn't have the event, you can create it and publish the event.
https://docs.abp.io/en/abp/latest/Event-Bus
hi
The Icelandic doesn't exist in the template project.
Did you add it manually?
hi
Can you try to upgrade to v8.1.4 and try again.
hi
Please share the logs in the Logs.txt and also try to upgrade the IdentityModel packages to the latest.
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />
hi
Can you explain what is your needs for the Worker Project?
Thanks.
hi
Can you share the logs?
Set log level to Debug.
public class Program
{
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
Please use the latest IdentityModel packages in the HttpApi.Host project.
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />
https://github.com/abpframework/abp/issues/20145#issuecomment-2202052771