Skip to content

Commit 00f80be

Browse files
committed
Removed .NET 3.1 support for EF Core library
1 parent 938597b commit 00f80be

3 files changed

Lines changed: 1 addition & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ jobs:
4545
echo "BUILD_VERSION=$version" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
4646
shell: pwsh
4747

48-
- name: Setup .NET Core 3.1
49-
uses: actions/setup-dotnet@v1
50-
with:
51-
dotnet-version: 3.1.x
52-
5348
- name: Setup .NET 5.0
5449
uses: actions/setup-dotnet@v1
5550
with:

.github/workflows/docs.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v2
2626

27-
- name: Setup .NET Core 3.1
28-
uses: actions/setup-dotnet@v1
29-
with:
30-
dotnet-version: 3.1.x
31-
3227
- name: Setup .NET 5.0
3328
uses: actions/setup-dotnet@v1
3429
with:

src/MADE.Data.EFCore/MADE.Data.EFCore.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="MSBuild.Sdk.Extras">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net5.0</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Entity Framework</Product>
77
<Description>
@@ -22,8 +22,4 @@
2222
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.14" />
2323
</ItemGroup>
2424

25-
<ItemGroup Condition="'$(TargetFramework)'=='netcoreapp3.1'">
26-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.22" />
27-
</ItemGroup>
28-
2925
</Project>

0 commit comments

Comments
 (0)