From 4cbd87a10cafe036f9ead54231fe970e8b54998d Mon Sep 17 00:00:00 2001 From: Simon Baynes Date: Thu, 15 Aug 2024 17:13:05 +0100 Subject: [PATCH] Remove .net 7 support Closes #456 --- CHANGELOG.md | 1 + src/Html2Markdown/Html2Markdown.csproj | 2 +- test/Html2Markdown.Test/Html2Markdown.Test.csproj | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0345107..c9be37f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Reverted doxygen publishing action back to original as they have taken [my contribution](https://github.com/DenverCoder1/doxygen-github-pages-action/pull/30) and [implemented it](https://github.com/DenverCoder1/doxygen-github-pages-action/releases/tag/v2.0.0) in the main repo. +- Dropped support for .Net 7 ## [6.2.5.7] - 2024-08-07 diff --git a/src/Html2Markdown/Html2Markdown.csproj b/src/Html2Markdown/Html2Markdown.csproj index 7d45950..232e395 100644 --- a/src/Html2Markdown/Html2Markdown.csproj +++ b/src/Html2Markdown/Html2Markdown.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0 + net8.0 Simon Baynes Apache-2.0 https://github.com/baynezy/Html2Markdown diff --git a/test/Html2Markdown.Test/Html2Markdown.Test.csproj b/test/Html2Markdown.Test/Html2Markdown.Test.csproj index 45c5610..e167604 100644 --- a/test/Html2Markdown.Test/Html2Markdown.Test.csproj +++ b/test/Html2Markdown.Test/Html2Markdown.Test.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0 + net8.0