Base solution for your next web application

Activities of "bulutyonetim"

Hi @gterdem

Thanks for clarification.

Hi I didn't get what you mean, can you explain with an example.

I asked for ASP.NET Core and Angular single solution not seprated.

What is your product version? 9.0.1 What is your product type (Angular or MVC)? Angular (single solution) What is product framework type (.net framework or .net core)? ASP.NET CORE


Hi,

What is best practice to add existing database to Asp.net zero and be able to use asp.net zero's features. In fact I don't have problem with importing DB to code first. I am asking because I want to be able use Zero's features after import. Feature's like Full Audit, SoftDelete, MultiTenancy and etc...

Thank you.

What is your product version? 9.0.1 What is your product type (Angular or MVC)? Angular (single solution) What is product framework type (.net framework or .net core)? ASP.NET CORE


Hi

Is there any step by step guide for publishing ASP.NET Core and Angular single solution to IIS? If not can guide me how to host API (.Net Core) and UI (Angular) on same site on iis? What about "ServerRootAddress": "https://localhost:44301/", "ClientRootAddress": "http://localhost:4200/" settings in appsetting.jso and etc...

Thanks.

Hi,

That was what I need thanks for helpping.

Hi

The post you referred did not helped me to solve this completely. I tried to get environment from command line in Pudux.Migrator.Main() like this:

public static void Main(string[] args)
{
    ParseArgs(args);
    //.............
 }
 
private static void ParseArgs(string[] args)
{
    if (args.IsNullOrEmpty())
    {
        return;
    }

    foreach (var arg in args)
    {
        if (arg == "-s")
        {
            _skipConnVerification = true;
        }

        if (arg.ToLower() == "-staging")
        {
            _env = "Staging";
        }

        if (arg.ToLower() == "-production")
        {
            _env = "Production";
        }
    }
}

But could not fine a way to pass _env to xxxMigratorModule constructure where asp.net zero is getting configuration settings. If I could pass it I can get desired configuration like this:

_appConfiguration = AppConfigurations.Get(
    typeof(PuduxMigratorModule).GetAssembly().GetDirectoryPathOrNull(),
    environmentName,
    addUserSecrets: true
);

What is your product version? 9.0.1 What is your product type (Angular or MVC)? Angular (single solution) What is product framework type (.net framework or .net core)? ASP.NET CORE


Hi what is best practise to make Migrator project work with environment jsons. I need a way to publish Migrator project to different environments each using it's own configuration.json

Thank you

Please answer the following questions before submitting an issue.

  • What is your product version? 9.0.1
  • What is your product type (Angular or MVC)? Angular (single solution)
  • What is product framework type (.net framework or .net core)? ASP.NET CORE

Hi,

I need to change tenant based on my requirements on only login page.

  • If URL does not contain any subdomain like mysite.com/account/login should sign in users into default tenant. I found that I can set the tenant to default on LoginService.ts like this
init(): void {
    abp.multiTenancy.setTenantIdCookie(1);
    ....
}
  • If URL contains any subdomain like tenantX.mysite.com/account/login should sign in users into tenantX Can you guid me how to do this?

Hi,

Thanks.

Showing 11 to 20 of 30 entries