Skip to content

Commit

Permalink
Add .NET 8 support and update packages. (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
chullybun committed Dec 13, 2023
1 parent 5aaa975 commit 4f61458
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Represents the **NuGet** versions.

## v2.3.13
- *Fixed:* Updated `CoreEx` to version `3.6.1`.
- *Fixed:* Added `net8.0` support.

## v2.3.12
- *Fixed:* The `OutBox.EventOutbox` table clustered/non-clustered indexes changed to simplify default implementation. Implementors of this capability should review the indexing, etc., based on usage to optimize.
- _Note:_ it is also expected that the _Outbox_ tables are regularly purged, i.e. dequeued events should be removed. This is the responsibility of the implementor to perform as required.
Expand Down
2 changes: 1 addition & 1 deletion Common.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>2.3.12</Version>
<Version>2.3.13</Version>
<LangVersion>preview</LangVersion>
<Authors>Avanade</Authors>
<Company>Avanade</Company>
Expand Down
6 changes: 3 additions & 3 deletions src/DbEx.MySql/DbEx.MySql.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0;netstandard2.1</TargetFrameworks>
<RootNamespace>DbEx.MySql</RootNamespace>
<Product>DbEx</Product>
<Title>DbEx MySQL Migration Tool.</Title>
Expand Down Expand Up @@ -39,8 +39,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx.Database.MySql" Version="3.3.0" />
<PackageReference Include="dbup-mysql" Version="5.0.10" />
<PackageReference Include="CoreEx.Database.MySql" Version="3.6.1" />
<PackageReference Include="dbup-mysql" Version="5.0.37" />
<PackageReference Include="OnRamp" Version="1.0.8" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/DbEx.SqlServer/DbEx.SqlServer.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0;netstandard2.1</TargetFrameworks>
<RootNamespace>DbEx.SqlServer</RootNamespace>
<Product>DbEx</Product>
<Title>DbEx SQL Server Migration Tool.</Title>
Expand Down Expand Up @@ -30,8 +30,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.3.0" />
<PackageReference Include="dbup-sqlserver" Version="5.0.8" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.6.1" />
<PackageReference Include="dbup-sqlserver" Version="5.0.37" />
<PackageReference Include="OnRamp" Version="1.0.8" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/DbEx/DbEx.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0;netstandard2.1</TargetFrameworks>
<RootNamespace>DbEx</RootNamespace>
<Product>DbEx</Product>
<Title>DbEx Database Migration Tool.</Title>
Expand All @@ -21,8 +21,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx.Database" Version="3.3.0" />
<PackageReference Include="dbup-sqlserver" Version="5.0.8" />
<PackageReference Include="CoreEx.Database" Version="3.6.1" />
<PackageReference Include="dbup-sqlserver" Version="5.0.37" />
<PackageReference Include="OnRamp" Version="1.0.8" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion tests/DbEx.Test/DbEx.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
Expand Down

0 comments on commit 4f61458

Please sign in to comment.