Activities of "rick@i-pulse.nl"

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v5.3.3
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

We use the upload functionality with MVC and we generated clientproxy due to a bug in ABP. When we upload a file, the contentlength is 0 when we reach the generated clientproxy.

Contorller

Upload method in generated proxy

<br> In the AppService the contentlength is also 0

What is going wrong with this upload? This worked in an older version of ABP without the generated proxy.

Thanks.

<br>

  • ABP Framework version: v5.3.3
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

We have a Microservice solution with multiple custom services. This application is locally running fine but after installing it on Azure Kubernetes we got some issues. Many issues are already solved, but now we got stock on this errror.

Reproduction steps:

  1. All services are running
  2. We can open the portal screen. (web application)
  3. We can also open the auth portal screen and then we see the login
  4. When I click on login in the webapp, I see the following error in the console of the web portal project.
  • No error in the Identityservice, GatewayService or AuthService

What are we doing wrong?

[18:31:49 ERR] An unhandled exception has occurred while executing the request.
System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'System.String'.
---> System.ArgumentException: IDX20108: The address specified 'System.String' is not valid as per HTTPS scheme. Please specify an https address for security reasons. If you want to test with http address, set the RequireHttps property on IDocumentRetriever to false. (Parameter 'address')
at Microsoft.IdentityModel.Protocols.HttpDocumentRetriever.GetDocumentAsync(String address, CancellationToken cancel)
at Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfigurationRetriever.GetAsync(String address, IDocumentRetriever retriever, CancellationToken cancel)
at Microsoft.IdentityModel.Protocols.ConfigurationManager`1.GetConfigurationAsync(CancellationToken cancel)
--- End of inner exception stack trace ---`
at Microsoft.IdentityModel.Protocols.ConfigurationManager`1.GetConfigurationAsync(CancellationToken cancel)
at Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectHandler.HandleChallengeAsyncInternal(AuthenticationProperties properties)
at Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectHandler.HandleChallengeAsync(AuthenticationProperties properties)
at Microsoft.AspNetCore.Authentication.AuthenticationHandler`1.ChallengeAsync(AuthenticationProperties properties)
at Microsoft.AspNetCore.Authentication.AuthenticationService.ChallengeAsync(HttpContext context, String scheme, AuthenticationProperties properties)
at Microsoft.AspNetCore.Mvc.ChallengeResult.ExecuteResultAsync(ActionContext context)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextResultFilterAsync>g__Awaited|30_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeResultFilters>g__Awaited|28_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextResourceFilter>g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
  • ABP Framework version: v5.3.3
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Problem 1 We updated our Microservice solution to newest packages and ABP version. Since we did that, we cannot see lists of the default ABP services. We get 404 in the Web and the gateway is not called anymore. So, we tried to create a new Microservice solution to see the differences and maybe to merge our old services to this new solution. In that new solution we see that the internal Gateway is gone. So, maybe that's the reason why the old project is not running anymore after the upgrade.

Problem 2 When I create that solution, run migrations and started all services I was trying to open the public gateway and gateway. Both swagger pages are empty and in my console I see these errors:

This happens when we have creating nothing custom yet.

Problem 3 When we add a new custom service with entities etc.. and try to run, it seems to work. But when we open the list page, we got an error in our console because the window.APPNAME.OrderService is not defined. The default productService is available with all API methods, but our new service not.

So, we are facing multiple issues with a new solution and services. Please help!

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v4.3.3
  • UI type: / MVC /
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hi,

We are using the microservices solution and have a product service with many API calls in the Host. At this moment all these calls are available in the Gateway and the Public Gateway. Also all the models used for the calls are available in Swagger.

We want some specific calls in the Public Gateway which can be used for the website and don't want to have all other calls in there. See the image below of what we have now and what we want.

All API calls and objects are generated, but can we split this without making a seperate PublicProduct module?

We have a custom API implementation so without packages of ABP. We created the clientcredentials and we can get data. But on the API the TenantId is not filled so the filtering is not correct now. What should we add to the request to fill the TenantId in the filtering?

I can add it as request parameter and set the tenantId with CurrentTenant.Change(), but there must be a better way. I also tried to add the TenantId as Claim in the Client settings, but that didn't work.

Hi,

We developed a productservice which is Multitenant. Managing this in the webportal works good and when I login as tenant, the products are saved under that tenant. For external applications we created the API client credentials and we are able to do API calls. But with this authorization no tenant setting/validation is done.

Is there an easy way that we can manage this out-of-the-box? I can add a tenantId in every request, but I was wondering if this is managed by ABP by default.

Hi,

When we run the webgateway on localhost and do a POST, we got an errorcode 400 in Swagger and in the application log an Antiforgerytoken exception. We did the authorize offcouse and the GET methods works fine. When I do the call in Azure Kubernetes it also works fine. This happens in all modules so also the default ABP modules.

Is there a setting to ignore this validation on localhost? Or how can we solve this? We are using the Microservices template.

Hello,

We have 3 problems which we described a sample project.

  1. Upload to blob is not working
  2. After saving a detail screen (not popup), we cannot redirect to another page (for example index or detail)
  3. After saving a detail screen, we cannot show an alert message Please download our WeTransfer link with the sample project to see what happens: https://we.tl/t-lErtqI0FmM . Then see Menu:FileUpload -> Files.Upload to blob is not working

Upload to blob is not working We have used the posts of ABP and Bartvanhoey (https://githubmemory.com/repo/bartvanhoey/AbpFileUploadToAzureStorage) for inspiration for the implementation of the upload to blob. All registrations are working well but when we try to upload we got an exception. See:

2 & 3) After saving Title is clear I think. See:

Hi,

I want to add te filemanagement module to my Microservice project(s). When I follow these steps it didn't work: https://docs.abp.io/en/commercial/latest/modules/file-management#file-management-module

  • I did the manual installation steps and it all build.
  • The user has permissions to the filemanager
  • Navigation added in MenuContributors
  • It will not appear in the menu
  • Is there a manual how to use the filemanager in other microservices? For example to manage images in the sample ProductService?

<br> <br>

Hi,

  • I have updated ABP suite
  • Created a new Microservice solution with MVC.
  • Clean solution
  • dotnet restore
  • dotnet build
  • Then start all applications.

All applications succeeded but the Auth-server will fail with following info. It looks a conflict with EntityFramworkCore, but how can we solve this? It seems to be a bug in the ABP framework. Please help!

Building... C:\Users\NAME\.nuget\packages\microsoft.extensions.fileproviders.embedded\5.0.7\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.targets(19,5): warning : GenerateEmbeddedFilesManifest was set, but no EmbeddedResource items were found that could be added to the manifest. [C:\Folder\IBP\services\administration\src\IBP.AdministrationService.Domain.Shared\IBP.AdministrationService.Domain.Shared.csproj] C:\Users\NAME\.nuget\packages\microsoft.extensions.fileproviders.embedded\5.0.7\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.targets(19,5): warning : GenerateEmbeddedFilesManifest was set, but no EmbeddedResource items were found that could be added to the manifest. [C:\Folder\IBP\services\saas\src\IBP.SaasService.Domain.Shared\IBP.SaasService.Domain.Shared.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Found conflicts between different versions of "Microsoft.EntityFrameworkCore" that could not be resolved. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: There was a conflict between "Microsoft.EntityFrameworkCore, Version=5.0.6.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" and "Microsoft.EntityFrameworkCore, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: "Microsoft.EntityFrameworkCore, Version=5.0.6.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was chosen because it was primary and "Microsoft.EntityFrameworkCore, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was not. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: References which depend on "Microsoft.EntityFrameworkCore, Version=5.0.6.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" [C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.dll]. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: References which depend on "Microsoft.EntityFrameworkCore, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" []. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\administration\src\IBP.AdministrationService.EntityFrameworkCore\bin\Debug\net5.0\IBP.AdministrationService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Folder\IBP\services\administration\src\IBP.AdministrationService.EntityFrameworkCore\bin\Debug\net5.0\IBP.AdministrationService.EntityFrameworkCore.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\administration\src\IBP.AdministrationService.EntityFrameworkCore\bin\Debug\net5.0\IBP.AdministrationService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\identity\src\IBP.IdentityService.EntityFrameworkCore\bin\Debug\net5.0\IBP.IdentityService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Folder\IBP\services\identity\src\IBP.IdentityService.EntityFrameworkCore\bin\Debug\net5.0\IBP.IdentityService.EntityFrameworkCore.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\identity\src\IBP.IdentityService.EntityFrameworkCore\bin\Debug\net5.0\IBP.IdentityService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\saas\src\IBP.SaasService.EntityFrameworkCore\bin\Debug\net5.0\IBP.SaasService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Folder\IBP\services\saas\src\IBP.SaasService.EntityFrameworkCore\bin\Debug\net5.0\IBP.SaasService.EntityFrameworkCore.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\saas\src\IBP.SaasService.EntityFrameworkCore\bin\Debug\net5.0\IBP.SaasService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Found conflicts between different versions of "Microsoft.EntityFrameworkCore.Relational" that could not be resolved. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: There was a conflict between "Microsoft.EntityFrameworkCore.Relational, Version=5.0.6.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" and "Microsoft.EntityFrameworkCore.Relational, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: "Microsoft.EntityFrameworkCore.Relational, Version=5.0.6.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was chosen because it was primary and "Microsoft.EntityFrameworkCore.Relational, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" was not. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: References which depend on "Microsoft.EntityFrameworkCore.Relational, Version=5.0.6.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" [C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore.relational\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.Relational.dll]. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore.relational\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.Relational.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore.relational\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.Relational.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Users\NAME\.nuget\packages\microsoft.entityframeworkcore.relational\5.0.6\lib\netstandard2.1\Microsoft.EntityFrameworkCore.Relational.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: References which depend on "Microsoft.EntityFrameworkCore.Relational, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" []. [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\administration\src\IBP.AdministrationService.EntityFrameworkCore\bin\Debug\net5.0\IBP.AdministrationService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Folder\IBP\services\administration\src\IBP.AdministrationService.EntityFrameworkCore\bin\Debug\net5.0\IBP.AdministrationService.EntityFrameworkCore.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\administration\src\IBP.AdministrationService.EntityFrameworkCore\bin\Debug\net5.0\IBP.AdministrationService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\identity\src\IBP.IdentityService.EntityFrameworkCore\bin\Debug\net5.0\IBP.IdentityService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Folder\IBP\services\identity\src\IBP.IdentityService.EntityFrameworkCore\bin\Debug\net5.0\IBP.IdentityService.EntityFrameworkCore.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\identity\src\IBP.IdentityService.EntityFrameworkCore\bin\Debug\net5.0\IBP.IdentityService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\saas\src\IBP.SaasService.EntityFrameworkCore\bin\Debug\net5.0\IBP.SaasService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: Project file item includes which caused reference "C:\Folder\IBP\services\saas\src\IBP.SaasService.EntityFrameworkCore\bin\Debug\net5.0\IBP.SaasService.EntityFrameworkCore.dll". [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] C:\Program Files\dotnet\sdk\5.0.300\Microsoft.Common.CurrentVersion.targets(2202,5): warning MSB3277: C:\Folder\IBP\services\saas\src\IBP.SaasService.EntityFrameworkCore\bin\Debug\net5.0\IBP.SaasService.EntityFrameworkCore.dll [C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\IBP.AuthServer.csproj] [16:58:02 INF] Starting IBP.AuthServer. [16:58:02 FTL] IBP.AuthServer terminated unexpectedly! Volo.Abp.AbpInitializationException: An error occurred during ConfigureServices phase of the module IBP.AdministrationService.EntityFrameworkCore.AdministrationServiceEntityFrameworkCoreModule, IBP.AdministrationService.EntityFrameworkCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null. See the inner exception for details. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.EntityFrameworkCore, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. File name: 'Microsoft.EntityFrameworkCore, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' at IBP.AdministrationService.EntityFrameworkCore.AdministrationServiceEntityFrameworkCoreModule.ConfigureServices(ServiceConfigurationContext context) at Volo.Abp.AbpApplicationBase.ConfigureServices() --- End of inner exception stack trace --- at Volo.Abp.AbpApplicationBase.ConfigureServices() at Volo.Abp.AbpApplicationBase..ctor(Type startupModuleType, IServiceCollection services, Action1 optionsAction) at Volo.Abp.AbpApplicationWithExternalServiceProvider..ctor(Type startupModuleType, IServiceCollection services, Action1 optionsAction) at Volo.Abp.AbpApplicationFactory.Create(Type startupModuleType, IServiceCollection services, Action1 optionsAction) at Volo.Abp.AbpApplicationFactory.Create[TStartupModule](IServiceCollection services, Action1 optionsAction) at Microsoft.Extensions.DependencyInjection.ServiceCollectionApplicationExtensions.AddApplication[TStartupModule](IServiceCollection services, Action1 optionsAction) at IBP.AuthServer.Startup.ConfigureServices(IServiceCollection services) in C:\Folder\IBP\apps\auth-server\src\IBP.AuthServer\Startup.cs:line 11 at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor, Boolean wrapExceptions) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at Microsoft.AspNetCore.Hosting.ConfigureServicesBuilder.InvokeCore(Object instance, IServiceCollection services) at Microsoft.AspNetCore.Hosting.ConfigureServicesBuilder.<&gt;c__DisplayClass9_0.g__Startup|0(IServiceCollection serviceCollection)

at Microsoft.AspNetCore.Hosting.ConfigureServicesBuilder.Invoke(Object instance, IServiceCollection services) at Microsoft.AspNetCore.Hosting.ConfigureServicesBuilder.<>c__DisplayClass8_0.b__0(IServiceCollection services)

at Microsoft.AspNetCore.Hosting.GenericWebHostBuilder.UseStartup(Type startupType, HostBuilderContext context, IServiceCollection services, Object instance) at Microsoft.AspNetCore.Hosting.GenericWebHostBuilder.<>c__DisplayClass13_0.b__0(HostBuilderContext context, IServiceCollection services)

at Microsoft.Extensions.Hosting.HostBuilder.CreateServiceProvider() at Microsoft.Extensions.Hosting.HostBuilder.Build()`

Showing 1 to 10 of 14 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11