Skip to content

Commit

Permalink
Upgrade to ABP 8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Jul 26, 2024
1 parent 0a87536 commit f4e1c61
Show file tree
Hide file tree
Showing 16 changed files with 2,961 additions and 2,391 deletions.
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project>
<PropertyGroup>

<AbpVersion>8.1.0</AbpVersion>
<CapPackageVersion>8.1.0</CapPackageVersion>
<CapInMemoryMessageQueuePackageVersion>8.0.0</CapInMemoryMessageQueuePackageVersion>
<AbpVersion>8.2.0</AbpVersion>
<CapPackageVersion>8.2.0</CapPackageVersion>
<CapInMemoryMessageQueuePackageVersion>8.2.0</CapInMemoryMessageQueuePackageVersion>

</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>8.1.0</Version>
<Version>8.2.0</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>EasyAbp Team</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>CapSample</RootNamespace>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>CapSample</RootNamespace>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>
Expand All @@ -25,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.4" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public class CapSampleDbContext :
public DbSet<IdentitySecurityLog> SecurityLogs { get; set; }
public DbSet<IdentityLinkUser> LinkUsers { get; set; }
public DbSet<IdentityUserDelegation> UserDelegations { get; set; }

public DbSet<IdentitySession> Sessions { get; set; }

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

0 comments on commit f4e1c61

Please sign in to comment.