Base solution for your next web application
Open Closed

Problem with the asp.net core update to v7.0 #7265


User avatar
0
antonis created

Since nobody is replying to github issue I am writing here for a major problem I have when I update to v7.0. I am using aspnet core with angular.

. I updated the aspnet core but I dont see my custom module appservices in the service.proxies.ts after I ran refresh.bat nor into the swagger ui. It seems that the appservices are not registered in router. I managed to get all routes of my solution. Not one route of the custom modules is present. What is the problem here? After upgrading to 7.0 this problem started happening

Thanks in advance


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

    hi

    Did you call the CreateControllersForAppServices method for the assembly of this module?

    https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Core/AbpZeroTemplateWebCoreModule.cs#L63

  • User Avatar
    0
    antonis created

    Thanks