Skip to content

Commit d81e1d9

Browse files
LulalabyCopilotCopilot
committed
build: remove net8 support
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-Authored-By: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 8627a3b commit d81e1d9

8 files changed

Lines changed: 4 additions & 14 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
11.x
3333
10.x
3434
9.x
35-
8.x
3635
- name: Restore dependencies
3736
run: dotnet restore --no-cache -f -v minimal
3837
- name: Build library

.github/workflows/codeql.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
11.x
3636
10.x
3737
9.x
38-
8.x
3938
- name: Restore dependencies
4039
run: dotnet restore --no-cache -f -v minimal
4140
- name: Build

.github/workflows/documentation.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
11.x
2323
10.x
2424
9.x
25-
8.x
2625
- name: Git fetch unshallow
2726
run: git fetch --unshallow
2827
- name: Install DocFX

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
11.x
3535
10.x
3636
9.x
37-
8.x
3837
- name: Restore dependencies
3938
run: dotnet restore --no-cache -f -v minimal
4039
- name: Build library as full release

DisCatSharp.Extensions.OAuth2Web/DisCatSharp.Extensions.OAuth2Web.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,11 @@
3131

3232
Extension providing a web server for the DiscordOAuth2Client.
3333
</Description>
34-
<PackageTags>DisCatSharp,DisCatSharp Extension,OAuth2,OAuth,Discord OAuth2,Discord,Bots,Discord Bots,AITSYS,Net8,Net9,Net10,Net11,Webserver</PackageTags>
34+
<PackageTags>DisCatSharp,DisCatSharp Extension,OAuth2,OAuth,Discord OAuth2,Discord,Bots,Discord Bots,AITSYS,Net9,Net10,Net11,Webserver</PackageTags>
3535
<TypeScriptJSXEmit>none</TypeScriptJSXEmit>
3636
<TypeScriptModuleKind>none</TypeScriptModuleKind>
3737
</PropertyGroup>
3838

39-
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net9.0'))">
40-
<PackageReference Include="Backport.System.Threading.Lock" Version="3.1.8" />
41-
</ItemGroup>
4239

4340
<ItemGroup>
4441
<PackageReference Include="ConcurrentHashSet" Version="1.3.0" />

DisCatSharp.Extensions.SimpleMusicCommands/DisCatSharp.Extensions.SimpleMusicCommands.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
Extension allowing you to turn your bot into a music bot pretty easy.
2222
</Description>
23-
<PackageTags>DisCatSharp,DisCatSharp Extension,Music, Music Bot, Lavalink,Discord,Bots,Discord Bots,AITSYS,Net8,Net9,Net10,Net11</PackageTags>
23+
<PackageTags>DisCatSharp,DisCatSharp Extension,Music, Music Bot, Lavalink,Discord,Bots,Discord Bots,AITSYS,Net9,Net10,Net11</PackageTags>
2424
</PropertyGroup>
2525

2626
<ItemGroup>

DisCatSharp.Extensions.TwoFactorCommands/DisCatSharp.Extensions.TwoFactorCommands.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,9 @@
2020

2121
Extension allowing to require two factor authentication for commands.
2222
</Description>
23-
<PackageTags>DisCatSharp,DisCatSharp Extension,Mfa,2Fa,Two Factor Authentication,Discord,Bots,Discord Bots,AITSYS,Net8,Net9,Net10,Net11</PackageTags>
23+
<PackageTags>DisCatSharp,DisCatSharp Extension,Mfa,2Fa,Two Factor Authentication,Discord,Bots,Discord Bots,AITSYS,Net9,Net10,Net11</PackageTags>
2424
</PropertyGroup>
2525

26-
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net9.0'))">
27-
<PackageReference Include="Backport.System.Threading.Lock" Version="3.1.8" />
28-
</ItemGroup>
2926

3027
<ItemGroup>
3128
<PackageReference Include="DatabaseWrapper.Sqlite" Version="6.1.5" />

Targets/Library.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
44
<PropertyGroup>
55
<OutputType>Library</OutputType>
6-
<TargetFrameworks>net8.0;net9.0;net10.0;net11.0</TargetFrameworks>
6+
<TargetFrameworks>net9.0;net10.0;net11.0</TargetFrameworks>
77
<Nullable>enable</Nullable>
88
<LangVersion>latest</LangVersion>
99
</PropertyGroup>

0 commit comments

Comments
 (0)