From the stack, the error exists in FileProviders.Physical.PhysicalFilesWatche
instead of abp
and autofac
.
Abp just using the Configuration => PhysicalFilesWatcher
user can get all details about external provider configuration
these are public info not including the secrets.
hi
using IdentityUser = Volo.Abp.Identity.IdentityUser;
and you can inject the Volo.Abp.Identity.IdentityUserManager
service.
hi
You can see https://docs.abp.io/en/abp/latest/Entity-Framework-Core-Migrations#using-multiple-databases https://docs.abp.io/en/abp/latest/Entity-Framework-Core-Migrations#separating-host-tenant-database-schemas
hi
can i copy manually the folder libs and paste in bin/Release/net6.0/publish/wwwroot/libs ?
You can try this. Copy wwwrrot to the IIS website directory.
hi
Please try to addExtensionGrantValidator
in PreConfigure
method.
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<IIdentityServerBuilder>(identityServerBuilder =>
{
identityServerBuilder.AddExtensionGrantValidator<DelegationGrantValidator>();
});
}
hi
Please share full error info.
ok, I will try to fix it.
Try this?
<ItemGroup>
<Content Include="wwwroot\**\*">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>