Skip to content

Commit

Permalink
Upgrade to ABP 7.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed May 4, 2023
1 parent 4defc83 commit 418b21b
Show file tree
Hide file tree
Showing 16 changed files with 3,569 additions and 266 deletions.
6 changes: 3 additions & 3 deletions Directory.Build.props
@@ -1,9 +1,9 @@
<Project>
<PropertyGroup>

<AbpVersion>7.1.0</AbpVersion>
<EasyAbpAbpTagHelperPlusModuleVersion>1.4.0</EasyAbpAbpTagHelperPlusModuleVersion>
<EasyAbpAbpWeChatModuleVersion>2.4.0</EasyAbpAbpWeChatModuleVersion>
<AbpVersion>7.2.1</AbpVersion>
<EasyAbpAbpTagHelperPlusModuleVersion>1.5.0</EasyAbpAbpTagHelperPlusModuleVersion>
<EasyAbpAbpWeChatModuleVersion>2.5.0</EasyAbpAbpWeChatModuleVersion>

</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion common.props
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>2.2.0</Version>
<Version>2.3.0</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>EasyAbp Team</Authors>
Expand Down
Expand Up @@ -5,6 +5,7 @@
using Volo.Abp.EntityFrameworkCore;
using Volo.Abp.EntityFrameworkCore.Sqlite;
using Volo.Abp.Modularity;
using Volo.Abp.Uow;

namespace EasyAbp.WeChatManagement.Common.EntityFrameworkCore
{
Expand All @@ -17,6 +18,7 @@ public class CommonEntityFrameworkCoreTestModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.AddAlwaysDisableUnitOfWorkTransaction();
var sqliteConnection = CreateDatabaseAndGetConnection();

Configure<AbpDbContextOptions>(options =>
Expand Down
Expand Up @@ -7,6 +7,7 @@
using Volo.Abp.EntityFrameworkCore.Sqlite;
using Volo.Abp.Identity.EntityFrameworkCore;
using Volo.Abp.Modularity;
using Volo.Abp.Uow;

namespace EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore
{
Expand All @@ -19,6 +20,7 @@ public class WeChatManagementMiniProgramsEntityFrameworkCoreTestModule : AbpModu
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.AddAlwaysDisableUnitOfWorkTransaction();
var sqliteConnection = CreateDatabaseAndGetConnection();

Configure<AbpDbContextOptions>(options =>
Expand Down
Expand Up @@ -7,6 +7,7 @@
using Volo.Abp.EntityFrameworkCore;
using Volo.Abp.EntityFrameworkCore.Sqlite;
using Volo.Abp.Modularity;
using Volo.Abp.Uow;

namespace EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore;

Expand All @@ -19,6 +20,7 @@ public class ThirdPartyPlatformsEntityFrameworkCoreTestModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.AddAlwaysDisableUnitOfWorkTransaction();
var sqliteConnection = CreateDatabaseAndGetConnection();

Configure<AbpDbContextOptions>(options =>
Expand Down
Expand Up @@ -49,6 +49,7 @@ public class WeChatManagementSampleDbContext :
public DbSet<OrganizationUnit> OrganizationUnits { get; set; }
public DbSet<IdentitySecurityLog> SecurityLogs { get; set; }
public DbSet<IdentityLinkUser> LinkUsers { get; set; }
public DbSet<IdentityUserDelegation> UserDelegations { get; set; }

// Tenant Management
public DbSet<Tenant> Tenants { get; set; }
Expand Down

0 comments on commit 418b21b

Please sign in to comment.