Skip to content

Commit

Permalink
Update target frameworks : emoved support .net 6 and prepare for targ…
Browse files Browse the repository at this point in the history
…eting .net 9

Updated target frameworks to support only net7.0 and net8.0:
- EasyDbMigrator.csproj
- EasyDbMigratorTests.csproj
- ExampleTestLibWithPostgreSQLServerScripts.csproj
- ExampleTestLibWithSqlServerScripts.csproj

Updated packages in EasyDbMigrator.csproj:
- Npgsql: 8.0.3 -> 8.0.4
- Polly: 8.4.1 -> 8.4.2

Updated packages in EasyDbMigratorTests.csproj:
- FluentAssertions: 6.12.0 -> 6.12.1
- Microsoft.NET.Test.Sdk: 17.11.0 -> 17.11.1
- Moq: 4.20.70 -> 4.20.72
- xunit: 2.9.0 -> 2.9.2
  • Loading branch information
Retrodad0001 committed Oct 2, 2024
1 parent aaba27f commit 5cff5e4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions EasyDbMigrator/EasyDbMigrator.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;net8.0</TargetFrameworks>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down Expand Up @@ -53,8 +53,8 @@ For help and release info see: https://github.com/Retrodad0001/EasyDbMigrator</P

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Npgsql" Version="8.0.3" />
<PackageReference Include="Polly" Version="8.4.1" />
<PackageReference Include="Npgsql" Version="8.0.4" />
<PackageReference Include="Polly" Version="8.4.2" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
</ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions EasyDbMigratorTests/EasyDbMigratorTests.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;net8.0</TargetFrameworks>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
<Nullable>annotations</Nullable>
Expand All @@ -17,14 +17,14 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Dapper" Version="2.1.44" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="FluentAssertions" Version="6.12.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="TestEnvironment.Docker.Containers.Mssql" Version="2.1.8" />
<PackageReference Include="TestEnvironment.Docker.Containers.Postgres" Version="2.1.6" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
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;net8.0</TargetFrameworks>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/Retrodad0001/EasyDbMigrator</PackageProjectUrl>
<RepositoryUrl>https://github.com/Retrodad0001/EasyDbMigrator</RepositoryUrl>
Expand Down
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;net8.0</TargetFrameworks>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/Retrodad0001/EasyDbMigrator</PackageProjectUrl>
<RepositoryUrl>https://github.com/Retrodad0001/EasyDbMigrator</RepositoryUrl>
Expand Down

0 comments on commit 5cff5e4

Please sign in to comment.