Skip to content

Commit ba4b8b5

Browse files
committed
(#669) Remove support for .NET 6.0 and 7.0
These frameworks are now out of support, and as such, we should no longer be using them. This commit represents a breaking change, as people who are running GitReleaseManager on .NET 6.0 or .NET 7.0, will no longer work.
1 parent eb8c061 commit ba4b8b5

File tree

9 files changed

+12
-14
lines changed

9 files changed

+12
-14
lines changed

.github/workflows/build.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,13 @@ jobs:
4343
- name: Fetch all tags and branches
4444
run: git fetch --prune --unshallow
4545

46-
- name: Install .NET SDK 2.1.x, 3.1.x, 5.0.x, 6.0.x, 7.0.x, 8.0.x, and 9.0.x
46+
- name: Install .NET SDK 2.1.x, 3.1.x, 5.0.x, 8.0.x, and 9.0.x
4747
uses: actions/setup-dotnet@v4
4848
with:
4949
dotnet-version: |
5050
2.1.x
5151
3.1.x
5252
5.0.x
53-
6.0.x
54-
7.0.x
5553
8.0.x
5654
9.0.x
5755

nuspec/chocolatey/GitReleaseManager.Portable.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<tags>github release notes create export</tags>
2020
</metadata>
2121
<files>
22-
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net6.0\*.exe" target="tools" />
23-
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net6.0\*.pdb" target="tools" />
22+
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net8.0\*.exe" target="tools" />
23+
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net8.0\*.pdb" target="tools" />
2424
<file src="chocolateyInstall.ps1" target="tools"/>
2525
<file src="chocolateyUninstall.ps1" target="tools"/>
2626
<file src="VERIFICATION.TXT" />

nuspec/nuget/GitReleaseManager.nuspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<tags>github release notes create export</tags>
2121
</metadata>
2222
<files>
23-
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net6.0\*.exe" target="tools" />
24-
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net6.0\*.xml" target="tools" />
25-
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net6.0\*.pdb" target="tools" />
23+
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net8.0\*.exe" target="tools" />
24+
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net8.0\*.xml" target="tools" />
25+
<file src="..\..\BuildArtifacts\temp\_PublishedApplications\GitReleaseManager.Cli\net8.0\*.pdb" target="tools" />
2626
<file src="..\..\icons\package_icon.png" target="" />
2727
</files>
2828
</package>

src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AssemblyName>GitReleaseManager</AssemblyName>
5-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
<PublishSingleFile>true</PublishSingleFile>
77
<SelfContained>true</SelfContained>
88
<RuntimeIdentifier>win-x64</RuntimeIdentifier>

src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
44
<Title>GitReleaseManager.Core.Tests</Title>
55
<Description>Test Project for GitReleaseManager.Core</Description>
66
</PropertyGroup>

src/GitReleaseManager.Core/GitReleaseManager.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\TextTemplating\Microsoft.TextTemplating.targets" Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\TextTemplating\Microsoft.TextTemplating.targets')" />
44
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\TextTemplating\Microsoft.TextTemplating.targets" Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\TextTemplating\Microsoft.TextTemplating.targets')" />
55
<PropertyGroup>
6-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
77
<Title>GitReleaseManager.Core</Title>
88
<Description>Create release notes in markdown given a milestone</Description>
99
<IsPackable>false</IsPackable>

src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
44
<Title>GitReleaseManager.IntegrationTests</Title>
55
<Description>Integration Test Project for GitReleaseManager</Description>
66
</PropertyGroup>

src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
44
<Title>GitReleaseManager.Tests</Title>
55
<Description>Test Project for GitReleaseManager</Description>
66
</PropertyGroup>

src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<OutputType>Exe</OutputType>
44
<AssemblyName>GitReleaseManager</AssemblyName>
55
<PackAsTool>true</PackAsTool>
6-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
77
<ToolCommandName>dotnet-gitreleasemanager</ToolCommandName>
88
<PackageId>GitReleaseManager.Tool</PackageId>
99
<Title>GitReleaseManager Tool</Title>

0 commit comments

Comments
 (0)