Skip to content

Commit df7d3ac

Browse files
committed
Drop support for netcoreapp3.1, net5.0
These versions are out of support.
1 parent e8f1182 commit df7d3ac

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dotnet-deb/dotnet-deb.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0;</TargetFrameworks>
55
<PackageTags>dotnet cli packaging deb debian ubuntu mint installer</PackageTags>
66
<Description>Create Debian and Ubuntu installers (.deb files ) of your .NET Core projects straight from the command line.
77

dotnet-rpm/dotnet-rpm.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<PackageTags>dotnet cli packaging rpm package installer</PackageTags>
66
<Description>Create RPM packages (.rpm files) of your .NET Core projects straight from the command line.
77

dotnet-tarball/dotnet-tarball.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<PackageTags>dotnet cli packaging tarball tar.gz archive</PackageTags>
66
<Description>Create tarballs (.tar.gz files) of your .NET Core projects straight from the command line.
77

dotnet-zip/dotnet-zip.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<PackageTags>dotnet cli packaging zip archive</PackageTags>
66
<Description>Create .zip files of your .NET Core projects straight from the command line.
77

molecule/framework-dependent/framework-dependent-app/framework-dependent-app.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0,net7.0;net8.0;</TargetFrameworks>
5+
<TargetFrameworks>net6.0,net7.0;net8.0;</TargetFrameworks>
66
<RootNamespace>framework_dependent_app</RootNamespace>
77
</PropertyGroup>
88

molecule/self-contained/self-contained-app/self-contained-app.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0,net7.0;net8.0;</TargetFrameworks>
5+
<TargetFrameworks>net6.0,net7.0;net8.0;</TargetFrameworks>
66
<RootNamespace>self_contained_app</RootNamespace>
77
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
88
</PropertyGroup>

0 commit comments

Comments
 (0)