Skip to content

Commit

Permalink
fix: package reference and module depends
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnkwlp committed Nov 7, 2023
1 parent 0ee85f5 commit 038b1c1
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -263,3 +263,5 @@ paket-files/

# Use abp install-libs to restore.
**/wwwroot/libs/*

pack_out/
4 changes: 2 additions & 2 deletions modules/account/src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<Project>
<PropertyGroup>
<Version>0.2.0</Version>
<PackageVersion>0.2.7</PackageVersion>
<PackageVersion>0.2.8</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
using Volo.Abp.Account;
using Passingwind.Abp.Identity;
using Volo.Abp.Account;
using Volo.Abp.Application;
using Volo.Abp.Authorization;
using Volo.Abp.Modularity;
using Volo.Abp.SettingManagement;

namespace Passingwind.Abp.Account;

[DependsOn(
typeof(AccountDomainSharedModule),
typeof(IdentityApplicationContractsModule),
typeof(AbpDddApplicationContractsModule),
typeof(AbpAccountApplicationContractsModule),
typeof(AbpSettingManagementApplicationContractsModule),
typeof(AbpAuthorizationModule)
)]
public class AccountApplicationContractsModule : AbpModule
Expand Down
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
{
}
4 changes: 2 additions & 2 deletions modules/identity/src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<Project>
<PropertyGroup>
<Version>0.2.0</Version>
<PackageVersion>0.2.7</PackageVersion>
<PackageVersion>0.2.8</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
using Volo.Abp.Authorization;
using Volo.Abp.Identity;
using Volo.Abp.Modularity;
using Volo.Abp.SettingManagement;

namespace Passingwind.Abp.Identity;

[DependsOn(
typeof(IdentityDomainSharedModule),
typeof(AbpIdentityApplicationContractsModule),
typeof(AbpSettingManagementApplicationContractsModule),
typeof(AbpDddApplicationContractsModule),
typeof(AbpAuthorizationModule)
)]
)]
public class IdentityApplicationContractsModule : AbpModule
{
}

0 comments on commit 038b1c1

Please sign in to comment.