hi
Is your app depend on the AbpIdentityDomainModule?
Because we need this line of code.
context.Services.AddAbpDynamicOptions<IdentityOptions, AbpIdentityOptionsManager>();
hi
Please share the full code of registration function. Thanks
hi
You should follow Hangfire's document first.
https://docs.hangfire.io/en/latest/getting-started/aspnet-core-applications.html?highlight=addhangfireserver
btw, your application misses some migrations.
Please add new ef core migrations and update the databse.
hi
Is there any info in the logs.txt?
hi
We will fix this. Thanks
hi
Please share full error logs. Thanks
Include Api and balzor websites.
liming.ma@volosoft.com
hi
ConfigureBlobStoring to YourDbContext Please share the code you applied.
hi
This is because the DomainShared has builtin AbpVirtualFileSystem configure.
https://docs.abp.io/en/abp/latest/Virtual-File-System#working-with-the-embedded-files
Configure<AbpVirtualFileSystemOptions>(options =>
{
options.FileSets.AddEmbedded<MyProjectNameDomainSharedModule>();
});
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
<ItemGroup>
<EmbeddedResource Include="*.tpl" />
<Content Remove="*.tpl" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.0" />
</ItemGroup>