Skip to content

Commit 175f50b

Browse files
committed
Prepare for v2
1 parent 4d985b9 commit 175f50b

File tree

8 files changed

+7
-36
lines changed

8 files changed

+7
-36
lines changed

.github/workflows/codeql.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ jobs:
2727
- uses: actions/[email protected]
2828
with:
2929
dotnet-version: |
30-
6.0.x
31-
7.0.x
3230
8.0.x
3331
9.0.x
3432

.github/workflows/create-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ jobs:
3737
uses: actions/[email protected]
3838
with:
3939
dotnet-version: |
40-
6.0.x
41-
7.0.x
4240
8.0.x
4341
9.0.x
4442

.github/workflows/docs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
uses: actions/[email protected]
1919
with:
2020
dotnet-version: |
21-
6.0.x
22-
7.0.x
2321
8.0.x
2422
9.0.x
2523

.github/workflows/dotnet.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
uses: actions/[email protected]
1818
with:
1919
dotnet-version: |
20-
6.0.x
21-
7.0.x
2220
8.0.x
2321
9.0.x
2422

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ All notable changes to **ValueStringBuilder** will be documented in this file. T
66

77
## [Unreleased]
88

9+
This is the `v2` release of the **ValueStringBuilder**. There aren't any noticeable changes. Only old framework versions were removed to make further development easier.
10+
11+
### Removed
12+
- Support for `net6.0` and `net7.0` was removed.
13+
914
## [1.22.0] - 2024-12-18
1015

1116
### Added

src/LinkDotNet.StringBuilder/LinkDotNet.StringBuilder.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

src/LinkDotNet.StringBuilder/StringSyntaxAttribute.cs

Lines changed: 0 additions & 26 deletions
This file was deleted.

tests/LinkDotNet.StringBuilder.UnitTests/LinkDotNet.StringBuilder.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<Nullable>enable</Nullable>
66
<IsPackable>false</IsPackable>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

0 commit comments

Comments
 (0)