Hi,
Why you can't access IIdentityRoleRepository
? Can you explain the structure of your project
HI,
Can I check it remotely? shiwei.liang@volosoft.com
Hi, @viswajwalith
Yes we can have a remote metting. shiwei.liang@volosoft.com
Hi,
For module project, try:
public class MyProjectNameBlazorHostBundleContributor : IBundleContributor
{
public void AddScripts(BundleContext context)
{
}
public void AddStyles(BundleContext context)
{
context.Add("main.css", true);
}
}
Open appsettings.json
and add the following:
"AbpCli": {
"Bundle": {
"Mode": "BundleAndMinify", /* Options: None, Bundle, BundleAndMinify */
"Name": "global",
"Parameters": {
"LeptonTheme.Style": "Style1", /* Options: Style1, Style2... Style6 */
"LeptonTheme.ChangeStyleDynamically": "true"
}
}
}
Then run abp bundle
command in the Blazor.Host
folder to update resource references.
Hi,
I think you can manually create a new uow: https://docs.abp.io/en/abp/latest/Unit-Of-Work#begin-a-new-unit-of-work
Hi,
See: https://github.com/abpframework/abp/pull/9117
For now, you can create MyAwsBlobNamingNormalizer
to replace the AwsBlobNamingNormalizer
Hi,
See https://docs.abp.io/en/abp/latest/Blob-Storing-Aws#configuration
try:
options.Containers.ConfigureDefault(container =>
{
container.UseAws(Aws =>
{
//...
Aws.CreateContainerIfNotExists = true;
});
});