0
olitrepanier created
- ABP Framework version: v7.4.2
- UI Type: Blazor WASM
- Database System: EF Core SQL Server
- Tiered (for MVC) or Auth Server Separated (for Angular): no
- Exception message and full stack trace: No particular exceptions. The addition of the Chat module did not work.
- Steps to reproduce the issue:
- Run abp suite
- In the modules page, click add as package on the Chat module.
- Wait for the process to end (it took a very long time)
- Process completes successfully
Observe that the package references are not added to any .csproj
I tried to add all the references manually in all the csproj that required Volo.Chat which fixed most of my issues:
There are three projects that are problematic since they are also in .net standard?
When I look at the dependencies of these projects, I see this:
Any idea what went wrong or what I can do to fix this?
Thank you,
1 Answer(s)
-
0
Hi,
I could not reproduce the problem.
Here are the steps for manual installation:
- Install
Volo.Chat.Domain
to YourDomain
project - Install
Volo.Chat.Domain.Shared
to YourDomain.Shared
project - Install
Volo.Chat.EntityFrameworkCore
to YourEntityFrameworkCore
project - Install
Volo.Chat.Application
to YourApplication
project - Install
Volo.Chat.Application.Contracts
to YourApplication.Contracts
project - Install
Volo.Chat.HttpApi
to YourHttpApi
project - Install
Volo.Chat.HttpApi.Client
to YourHttpApi.Client
project - Install
Volo.Chat.Blazor
andVolo.Chat.Blazor.WebAssembly
to YourBlazor
project - Install
Volo.Chat.SignalR
to YourHttpApi.Host
project - Add module dependencies to each project. for example:
[DependsOn(typeof(ChatDomainModule))]
- Run
abp bundle
forBlazor
project
Open your
DbContext
protected override void OnModelCreating(ModelBuilder builder) { builder.ConfigureChat(); }
Add and apply a new migration file
- Install