Skip to content

Commit cf93435

Browse files
committed
Upgrade to ABP 8.2.0
1 parent d49e906 commit cf93435

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33

4-
<AbpVersion>8.1.0</AbpVersion>
4+
<AbpVersion>8.2.0</AbpVersion>
55

66
</PropertyGroup>
77
</Project>

common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<LangVersion>latest</LangVersion>
4-
<Version>1.8.0</Version>
4+
<Version>1.9.0</Version>
55
<NoWarn>$(NoWarn);CS1591</NoWarn>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Authors>EasyAbp Team</Authors>

src/EasyAbp.Abp.VerificationCode/EasyAbp.Abp.VerificationCode.csproj

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

55
<PropertyGroup>
6-
<TargetFramework>netstandard2.0</TargetFramework>
6+
<TargetFramework>net8.0</TargetFramework>
77
<RootNamespace />
88
</PropertyGroup>
99

test/EasyAbp.Abp.VerificationCode.Tests/EasyAbp.Abp.VerificationCode.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.4" />
1111
<PackageReference Include="NSubstitute" Version="5.1.0" />
1212
<PackageReference Include="Shouldly" Version="4.2.1" />
1313
<PackageReference Include="xunit" Version="2.6.1" />

test/EasyAbp.Abp.VerificationCode.Tests/EasyAbp/Abp/VerificationCode/AbpVerificationCodeTestsModule.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public override void ConfigureServices(ServiceConfigurationContext context)
5252

5353
private static SqliteConnection CreateDatabaseAndGetConnection()
5454
{
55-
var connection = new SqliteConnection("Data Source=:memory:");
55+
var connection = new AbpUnitTestSqliteConnection("Data Source=:memory:");
5656
connection.Open();
5757

5858
new IdentityDbContext(
@@ -64,7 +64,7 @@ private static SqliteConnection CreateDatabaseAndGetConnection()
6464

6565
private static SqliteConnection CreateDatabaseAndGetConnection2()
6666
{
67-
var connection = new SqliteConnection("Data Source=:memory:");
67+
var connection = new AbpUnitTestSqliteConnection("Data Source=:memory:");
6868
connection.Open();
6969

7070
new PermissionManagementDbContext(

0 commit comments

Comments
 (0)