Skip to content
This repository has been archived by the owner on Dec 29, 2024. It is now read-only.

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 30, 2024
1 parent d525fec commit 16f369a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>

<AbpVersion>8.1.0</AbpVersion>
<AbpVersion>8.2.0</AbpVersion>

</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>0.14.0</Version>
<Version>0.15.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 />
</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 />
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="$(AbpVersion)" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="$(AbpVersion)" />
<PackageReference Include="Volo.Abp.Autofac" Version="$(AbpVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.4" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public override void ConfigureServices(ServiceConfigurationContext context)

private static SqliteConnection CreateDatabaseAndGetConnection()
{
var connection = new SqliteConnection("Data Source=:memory:");
var connection = new AbpUnitTestSqliteConnection("Data Source=:memory:");

Check failure on line 40 in test/EasyAbp.Abp.RelatedDtoLoader.IntegratedTests/GuidKey/MyGuidEntityFrameworkCoreTestModule.cs

View workflow job for this annotation

GitHub Actions / publish

The type or namespace name 'AbpUnitTestSqliteConnection' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 40 in test/EasyAbp.Abp.RelatedDtoLoader.IntegratedTests/GuidKey/MyGuidEntityFrameworkCoreTestModule.cs

View workflow job for this annotation

GitHub Actions / publish

The type or namespace name 'AbpUnitTestSqliteConnection' could not be found (are you missing a using directive or an assembly reference?)
connection.Open();

var options = new DbContextOptionsBuilder<MyGuidDbContext>().UseSqlite(connection).Options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public override void ConfigureServices(ServiceConfigurationContext context)

private static SqliteConnection CreateDatabaseAndGetConnection()
{
var connection = new SqliteConnection("Data Source=:memory:");
var connection = new AbpUnitTestSqliteConnection("Data Source=:memory:");

Check failure on line 38 in test/EasyAbp.Abp.RelatedDtoLoader.IntegratedTests/IntegerKey/MyIntegerEntityFrameworkCoreTestModule.cs

View workflow job for this annotation

GitHub Actions / publish

The type or namespace name 'AbpUnitTestSqliteConnection' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 38 in test/EasyAbp.Abp.RelatedDtoLoader.IntegratedTests/IntegerKey/MyIntegerEntityFrameworkCoreTestModule.cs

View workflow job for this annotation

GitHub Actions / publish

The type or namespace name 'AbpUnitTestSqliteConnection' could not be found (are you missing a using directive or an assembly reference?)
connection.Open();

var options = new DbContextOptionsBuilder<MyIntegerDbContext>().UseSqlite(connection).Options;
Expand Down

0 comments on commit 16f369a

Please sign in to comment.