Skip to content

Commit 233a958

Browse files
authored
Merge pull request #10 from jxnkwlp/feature/abp-8.2
update abp version to 8.2.0
2 parents 81cec05 + 60e6af4 commit 233a958

File tree

12 files changed

+11
-20
lines changed

12 files changed

+11
-20
lines changed

common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project>
22

33
<PropertyGroup>
4-
<MicrosoftPackageVersion>8.0.0</MicrosoftPackageVersion>
5-
<AbpVersion>8.1.1</AbpVersion>
4+
<MicrosoftPackageVersion>8.0.4</MicrosoftPackageVersion>
5+
<AbpVersion>8.2.0</AbpVersion>
66
</PropertyGroup>
77

88
</Project>

host/common.props

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
<IsPackable>false</IsPackable>
1111
</PropertyGroup>
1212

13-
<PropertyGroup>
14-
<AbpVersion>8.1.1</AbpVersion>
15-
</PropertyGroup>
16-
1713
<Target Name="NoWarnOnRazorViewImportedTypeConflicts" BeforeTargets="RazorCoreCompile">
1814
<PropertyGroup>
1915
<NoWarn>$(NoWarn);0436</NoWarn>

host/src/Sample.Domain/SampleDomainModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public override void ConfigureServices(ServiceConfigurationContext context)
4444
{
4545
Configure<AbpLocalizationOptions>(options =>
4646
{
47-
options.Languages.Add(new LanguageInfo("en", "en", "English", "gb"));
47+
options.Languages.Add(new LanguageInfo("en", "English", "gb"));
4848
options.Languages.Add(new LanguageInfo("zh-Hans", "zh-Hans", "简体中文"));
4949
});
5050

host/src/Sample.EntityFrameworkCore/EntityFrameworkCore/SampleDbContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public class SampleDbContext :
5252
public DbSet<IdentitySecurityLog> SecurityLogs { get; set; }
5353
public DbSet<IdentityLinkUser> LinkUsers { get; set; }
5454
public DbSet<IdentityUserDelegation> UserDelegations { get; set; }
55+
public DbSet<IdentitySession> Sessions { get; set; }
5556

5657
/// <summary>
5758
/// Tenant Management

modules/api-keys/src/Passingwind.Abp.ApiKey.Domain/Passingwind.Abp.ApiKey.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\common.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netstandard2.1</TargetFramework>
6+
<TargetFramework>net8.0</TargetFramework>
77
<Nullable>enable</Nullable>
88
<RootNamespace>Passingwind.Abp.ApiKey</RootNamespace>
99
</PropertyGroup>

modules/api-keys/src/Passingwind.Abp.ApiKey.MongoDB/Passingwind.Abp.ApiKey.MongoDB.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\common.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netstandard2.1</TargetFramework>
6+
<TargetFramework>net8.0</TargetFramework>
77
<Nullable>enable</Nullable>
88
<RootNamespace>Passingwind.Abp.ApiKey</RootNamespace>
99
</PropertyGroup>

modules/common.props

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,6 @@
4040
</PackageReference>
4141
</ItemGroup>
4242

43-
<ItemGroup>
44-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.*">
45-
<PrivateAssets>all</PrivateAssets>
46-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
47-
</PackageReference>
48-
</ItemGroup>
49-
5043
<ItemGroup>
5144
<PackageReference Include="Roslynator.Analyzers" Version="$(RoslynatorVersion)">
5245
<PrivateAssets>all</PrivateAssets>

modules/identity-client/src/Passingwind.Abp.IdentityClient.Domain/Passingwind.Abp.IdentityClient.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\common.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netstandard2.1</TargetFramework>
6+
<TargetFramework>net8.0</TargetFramework>
77
<Nullable>enable</Nullable>
88
<RootNamespace>Passingwind.Abp.IdentityClient</RootNamespace>
99
</PropertyGroup>

modules/identity-client/src/Passingwind.Abp.IdentityClient.MongoDB/Passingwind.Abp.IdentityClient.MongoDB.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\common.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netstandard2.1</TargetFramework>
6+
<TargetFramework>net8.0</TargetFramework>
77
<Nullable>enable</Nullable>
88
<RootNamespace>Passingwind.Abp.IdentityClient</RootNamespace>
99
</PropertyGroup>

modules/identity/src/Passingwind.Abp.Identity.Domain/Passingwind.Abp.Identity.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\common.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netstandard2.1</TargetFramework>
6+
<TargetFramework>net8.0</TargetFramework>
77
<Nullable>enable</Nullable>
88
<RootNamespace>Passingwind.Abp.Identity</RootNamespace>
99
</PropertyGroup>

0 commit comments

Comments
 (0)