Base solution for your next web application
Open Closed

Change app on WebApi #8534


User avatar
0
andmattia created

Hi

I move from .Net to .NETCore soultion. My application is divided in some module with this structure base.Core base.Application base.EF base.WebApi base.Web (dependen on module1.web)

and

module1.Core module1.Application module1.EF module1.WebApi module1.Web

Configuration.Modules.AbpWebApi().DynamicApiControllerBuilder
                .ForAll<IApplicationService>(typeof(module1).Assembly, "module1")
                .Build();

I change on module.WebApi the name of API, So How and where I need to modify to achive the same result?


2 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team

    hi For net core: https://aspnetboilerplate.com/Pages/Documents/AspNet-Core#application-services-as-controllers

  • User Avatar
    0
    andmattia created

    @maliming Thanks a lot