Skip to content

Commit

Permalink
Update MDS, remove .NET 7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Oct 6, 2024
1 parent 20a73c0 commit 331b484
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
5 changes: 1 addition & 4 deletions src/SqlClientExtensions/Shims/DbDataSource.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
#if !NET7_0_OR_GREATER

using System.Threading;
using System.Threading.Tasks;
#if !NET8_0_OR_GREATER

#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member (compatibility shim for old TFMs)

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

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>ErikEJ.SqlClient.Extensions</PackageId>
<PackageVersion>1.0.4</PackageVersion>
<PackageVersion>1.0.5</PackageVersion>
<Authors>ErikEJ</Authors>
<Description>Makes it easier to use Microsoft.Data.SqlClient with Dependency Injection and adds ILogger logging of SqlClient events.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>Updated Microsoft.Data.SqlClient</PackageReleaseNotes>
<PackageReleaseNotes>Updated Microsoft.Data.SqlClient, remove .NET 7 support</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/ErikEJ/SqlClientExtensions</PackageProjectUrl>
<MinClientVersion>5.0</MinClientVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
6 changes: 3 additions & 3 deletions src/TestApi/TestApi.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.20" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
</ItemGroup>

Expand Down

0 comments on commit 331b484

Please sign in to comment.