Skip to content

Commit 685f5ee

Browse files
committed
misc: removed support for .net 6
1 parent 6d85f1b commit 685f5ee

File tree

6 files changed

+19
-13
lines changed

6 files changed

+19
-13
lines changed

.github/workflows/continuous.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,6 @@ jobs:
2626
- uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0
29-
30-
- name: Setup dotnet
31-
uses: actions/setup-dotnet@v4
32-
with:
33-
dotnet-version: |
34-
6.0.x
35-
8.0.x
36-
9.0.100-rc.2.24474.11
37-
3829
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
3930
uses: actions/cache@v3
4031
with:

StandardWebhooks.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ EndProject
1414
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StandardWebhooks.Tests", "test\StandardWebhooks.Tests\StandardWebhooks.Tests.csproj", "{D2DF6F72-749E-4185-B960-7E6D53BB35D4}"
1515
EndProject
1616
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "doc", "doc", "{B68EAE5C-8329-4D99-8D7C-B70D82937248}"
17+
ProjectSection(SolutionItems) = preProject
18+
doc\releases.md = doc\releases.md
19+
EndProjectSection
1720
EndProject
1821
Global
1922
GlobalSection(SolutionConfigurationPlatforms) = preSolution

build/_build.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<RootNamespace></RootNamespace>
77
<NoWarn>CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn>
88
<NukeRootDirectory>..</NukeRootDirectory>
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageDownload Include="minver-cli" Version="[5.0.0]" />
19+
<PackageDownload Include="minver-cli" Version="[6.0.0]" />
2020
</ItemGroup>
2121

2222
</Project>

doc/releases.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Releases
2+
3+
# 1.0.29
4+
5+
Full changelog: [1.0.28 -> 1.0.30](https://github.com/codefactors/StandardWebhooks/compare/1.0.28...1.0.30)
6+
7+
## What's Changed
8+
9+
### Update
10+
- Build: Updated Nuke Build from 8.1.x to 9.0.x
11+
- Build: Updated build project to .NET 9
12+
- Misc: Removed support for .NET 6.0 (out of support)

src/StandardWebhooks/StandardWebhooks.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.Web">
22

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

test/StandardWebhooks.Tests/StandardWebhooks.Tests.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;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)