-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: package reference and module depends
- Loading branch information
Showing
6 changed files
with
20 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -263,3 +263,5 @@ paket-files/ | |
|
||
# Use abp install-libs to restore. | ||
**/wwwroot/libs/* | ||
|
||
pack_out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...nt/src/Passingwind.Abp.Account.Application.Contracts/AccountApplicationContractsModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 6 additions & 2 deletions
8
modules/account/src/Passingwind.Abp.Account.AspNetCore/AccountAspNetCoreModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
using Volo.Abp.Identity.AspNetCore; | ||
using Passingwind.Abp.Identity; | ||
using Volo.Abp.AspNetCore.Mvc; | ||
using Volo.Abp.Identity.AspNetCore; | ||
using Volo.Abp.Modularity; | ||
|
||
namespace Passingwind.Abp.Account; | ||
|
||
[DependsOn( | ||
typeof(AccountDomainModule), | ||
typeof(AccountApplicationContractsModule), | ||
typeof(IdentityDomainModule), | ||
typeof(AbpAspNetCoreMvcModule), | ||
typeof(AbpIdentityAspNetCoreModule) | ||
)] | ||
)] | ||
public class AccountAspNetCoreModule : AbpModule | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters