[PR #964] [MERGED] Upgrade to .NET 9 #973

Closed
opened 2026-02-15 15:57:22 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/964
Author: @13xforever
Created: 11/13/2024
Status: Merged
Merged: 11/20/2024
Merged by: @clienthax

Base: masterHead: vnext


📝 Commits (8)

  • 9822887 update deps
  • d4e78d1 upgrade solution to net9.0
  • a9ff00f use new Lock type for explicit synchronization
  • 4fcd217 fix one obsolete compiler warning
  • 31acbb4 update action verisons in github actions files
  • 37fe3df upgrade codeql definition to the latest versio
  • 965236a another package update
  • e8fd467 minor code cleanup

📊 Changes

27 files changed (+182 additions, -178 deletions)

View changed files

📝 .config/dotnet-tools.json (+6 -4)
📝 .github/workflows/codeql-analysis.yml (+68 -57)
📝 .github/workflows/dotnet.yml (+18 -12)
📝 CONTRIBUTING.md (+0 -5)
📝 Clients/CirrusCiClient/CirrusCi.cs (+17 -17)
📝 Clients/CirrusCiClient/CirrusCiClient.csproj (+5 -5)
📝 Clients/CompatApiClient/ApiConfig.cs (+23 -25)
📝 Clients/CompatApiClient/Client.cs (+3 -3)
📝 Clients/CompatApiClient/CompatApiClient.csproj (+2 -9)
📝 Clients/CompatApiClient/Compression/CompressionMessageHandler.cs (+1 -5)
📝 Clients/CompatApiClient/Utils/UriExtensions.cs (+2 -2)
📝 Clients/GithubClient/GithubClient.csproj (+2 -2)
📝 Clients/IrdLibraryClient/IrdFormat/IrdParser.cs (+2 -2)
📝 Clients/IrdLibraryClient/IrdLibraryClient.csproj (+2 -2)
📝 Clients/MediafireClient/MediafireClient.csproj (+1 -1)
📝 Clients/OneDriveClient/OneDriveClient.csproj (+1 -1)
📝 Clients/PsnClient/CustomTlsCertificatesHandler.cs (+1 -1)
📝 Clients/PsnClient/PsnClient.csproj (+2 -2)
📝 Clients/YandexDiskClient/YandexDiskClient.csproj (+1 -1)
📝 CompatBot/CompatBot.csproj (+10 -10)

...and 7 more files

📄 Description

The usual stuff: better performance, lower memory usage.
Special consideration: moving from ubuntu 22.04 to 24.04 for the base image.

Obviously requires fresh container pull after the build is completed.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RPCS3/discord-bot/pull/964 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 11/13/2024 **Status:** ✅ Merged **Merged:** 11/20/2024 **Merged by:** [@clienthax](https://github.com/clienthax) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (8) - [`9822887`](https://github.com/RPCS3/discord-bot/commit/98228875c2c097c44931f633f95346049aa9c00b) update deps - [`d4e78d1`](https://github.com/RPCS3/discord-bot/commit/d4e78d1b1b55166a4a1cf8ef07831336f2c8a21d) upgrade solution to net9.0 - [`a9ff00f`](https://github.com/RPCS3/discord-bot/commit/a9ff00f80e75b35bfa49cf4ad89ab16cff2338b0) use new Lock type for explicit synchronization - [`4fcd217`](https://github.com/RPCS3/discord-bot/commit/4fcd217755c4301e41ed58a82b949acbc7ea8bce) fix one obsolete compiler warning - [`31acbb4`](https://github.com/RPCS3/discord-bot/commit/31acbb463395ef5cd767d251bfe80111269f635b) update action verisons in github actions files - [`37fe3df`](https://github.com/RPCS3/discord-bot/commit/37fe3dfaecb374875c36247e1bb20d3883a10431) upgrade codeql definition to the latest versio - [`965236a`](https://github.com/RPCS3/discord-bot/commit/965236ae52abe705dcf045aac72f1cfad01d4edb) another package update - [`e8fd467`](https://github.com/RPCS3/discord-bot/commit/e8fd467a73362d89000f347665a6123242ac7aaa) minor code cleanup ### 📊 Changes **27 files changed** (+182 additions, -178 deletions) <details> <summary>View changed files</summary> 📝 `.config/dotnet-tools.json` (+6 -4) 📝 `.github/workflows/codeql-analysis.yml` (+68 -57) 📝 `.github/workflows/dotnet.yml` (+18 -12) 📝 `CONTRIBUTING.md` (+0 -5) 📝 `Clients/CirrusCiClient/CirrusCi.cs` (+17 -17) 📝 `Clients/CirrusCiClient/CirrusCiClient.csproj` (+5 -5) 📝 `Clients/CompatApiClient/ApiConfig.cs` (+23 -25) 📝 `Clients/CompatApiClient/Client.cs` (+3 -3) 📝 `Clients/CompatApiClient/CompatApiClient.csproj` (+2 -9) 📝 `Clients/CompatApiClient/Compression/CompressionMessageHandler.cs` (+1 -5) 📝 `Clients/CompatApiClient/Utils/UriExtensions.cs` (+2 -2) 📝 `Clients/GithubClient/GithubClient.csproj` (+2 -2) 📝 `Clients/IrdLibraryClient/IrdFormat/IrdParser.cs` (+2 -2) 📝 `Clients/IrdLibraryClient/IrdLibraryClient.csproj` (+2 -2) 📝 `Clients/MediafireClient/MediafireClient.csproj` (+1 -1) 📝 `Clients/OneDriveClient/OneDriveClient.csproj` (+1 -1) 📝 `Clients/PsnClient/CustomTlsCertificatesHandler.cs` (+1 -1) 📝 `Clients/PsnClient/PsnClient.csproj` (+2 -2) 📝 `Clients/YandexDiskClient/YandexDiskClient.csproj` (+1 -1) 📝 `CompatBot/CompatBot.csproj` (+10 -10) _...and 7 more files_ </details> ### 📄 Description The usual stuff: better performance, lower memory usage. Special consideration: moving from ubuntu 22.04 to 24.04 for the base image. Obviously requires fresh container pull after the build is completed. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 15:57:22 -05:00
yindo closed this issue 2026-02-15 15:57:22 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RPCS3/discord-bot#973