Skip to content

Commit

Permalink
Remove support for .NET Core 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Si13n7 committed May 5, 2023
1 parent 262b3d8 commit f3d5640
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- uses: actions/checkout@v3
- name: Setup .NET Core 6.0
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Setup .NET Core 7.0
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
Expand Down
11 changes: 5 additions & 6 deletions src/Roydl.Crypto.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<AssemblyName>Roydl.Crypto</AssemblyName>
<RootNamespace>Roydl.Crypto</RootNamespace>
Expand All @@ -21,7 +21,8 @@
<Version>1.2.2</Version>
<PackageId>Roydl.Crypto</PackageId>
<Product>Roydl.Crypto</Product>
<PackageReleaseNotes>- Add full support for .NET 7.0</PackageReleaseNotes>
<PackageReleaseNotes>- Add full support for .NET 7.0
- Remove support for .NET Core 3.1</PackageReleaseNotes>
<AppDesignerFolder>Resources</AppDesignerFolder>
<AssemblyOriginatorKeyFile>Roydl.Crypto.snk</AssemblyOriginatorKeyFile>
<Title>Roy's Dynamic-Link Libraries – Cryptography and more</Title>
Expand All @@ -32,17 +33,15 @@
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile Condition="'$(TargetFramework)'=='netcoreapp3.1'">obj\Debug\netcoreapp3.1\Roydl.Crypto.xml</DocumentationFile>
<DocumentationFile Condition="'$(TargetFramework)'=='net6.0'">obj\Debug\net6.0\Roydl.Crypto.xml</DocumentationFile>
<DocumentationFile Condition="'$(TargetFramework)'=='net7.0'">obj\Debug\net7.0\Roydl.Crypto.xml</DocumentationFile>
<DocumentationFile Condition="'$(TargetFramework)'=='net6.0'">obj\Debug\net6.0\Roydl.Crypto.xml</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>..\bin\Debug</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile Condition="'$(TargetFramework)'=='netcoreapp3.1'">obj\Release\netcoreapp3.1\Roydl.Crypto.xml</DocumentationFile>
<DocumentationFile Condition="'$(TargetFramework)'=='net7.0'">obj\Release\net7.0\Roydl.Crypto.xml</DocumentationFile>
<DocumentationFile Condition="'$(TargetFramework)'=='net6.0'">obj\Release\net6.0\Roydl.Crypto.xml</DocumentationFile>
<DocumentationFile Condition="'$(TargetFramework)'=='net7.0'">obj\Release\net6.0\Roydl.Crypto.xml</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>..\bin\Release</OutputPath>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion test/Roydl.Crypto.Test.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;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<IsPackable>false</IsPackable>
<Authors>Roy Schroedel</Authors>
Expand Down

0 comments on commit f3d5640

Please sign in to comment.