[PR #445] [MERGED] Upgrade to dotnet core 3.0 #519

Closed
opened 2026-02-15 15:56:11 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/445
Author: @13xforever
Created: 10/31/2019
Status: Merged
Merged: 11/5/2019
Merged by: @13xforever

Base: masterHead: dotnet_core-3.0


📝 Commits (10+)

  • 2ae571a upgrade to dotnet core 3.0 and explicitly tag docker container
  • 2861abe [wip] everything is fucked
  • 24329a6 fix remaining issues with the code after upgrading to 3.0
  • ba0bd3f upgrade tests
  • 53c87e6 fix compilation warnings after upgrading to dotnet core 3.0
  • 90c05d5 update readme slightly
  • d1e3308 upgrade library projects to .net standard 2.1
  • d5d82c3 test for log analysis profiling
  • ec02ce1 convert syscall names to utf8 only when saving
  • 7f82996 use new ??= operator

📊 Changes

36 files changed (+260 additions, -226 deletions)

View changed files

📝 Clients/AppveyorClient/AppveyorClient.csproj (+1 -1)
📝 Clients/AppveyorClient/Client.cs (+1 -1)
📝 Clients/CompatApiClient/CompatApiClient.csproj (+1 -1)
📝 Clients/GithubClient/GithubClient.csproj (+1 -1)
📝 Clients/IrdLibraryClient/IrdClient.cs (+1 -1)
📝 Clients/IrdLibraryClient/IrdLibraryClient.csproj (+1 -1)
📝 Clients/PsnClient/PsnClient.cs (+1 -1)
📝 Clients/PsnClient/PsnClient.csproj (+1 -1)
CompatBot/.editorconfig (+4 -0)
📝 CompatBot/Commands/Syscall.cs (+5 -8)
📝 CompatBot/CompatBot.csproj (+7 -4)
📝 CompatBot/Database/DbImporter.cs (+24 -22)
📝 CompatBot/Database/NamingConventionConverter.cs (+5 -5)
📝 CompatBot/Database/PrimaryKeyConvention.cs (+1 -2)
📝 CompatBot/Database/Providers/SyscallInfoProvider.cs (+3 -2)
📝 CompatBot/EventHandlers/BotReactionsHandler.cs (+1 -1)
📝 CompatBot/EventHandlers/GithubLinksHandler.cs (+1 -1)
📝 CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs (+2 -2)
CompatBot/EventHandlers/LogParsing/SourceHandlers/FileSourceHandler.cs (+57 -0)
📝 CompatBot/EventHandlers/ProductCodeLookup.cs (+1 -1)

...and 16 more files

📄 Description

No description provided


🔄 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/445 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 10/31/2019 **Status:** ✅ Merged **Merged:** 11/5/2019 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `dotnet_core-3.0` --- ### 📝 Commits (10+) - [`2ae571a`](https://github.com/RPCS3/discord-bot/commit/2ae571a1cc80ba12f3e72cdbb7e1f270d96783ec) upgrade to dotnet core 3.0 and explicitly tag docker container - [`2861abe`](https://github.com/RPCS3/discord-bot/commit/2861abeee5d4f47efcb508defec8629d2ef9c5e3) [wip] everything is fucked - [`24329a6`](https://github.com/RPCS3/discord-bot/commit/24329a660248b46426e2ee73c2f29da865e8f161) fix remaining issues with the code after upgrading to 3.0 - [`ba0bd3f`](https://github.com/RPCS3/discord-bot/commit/ba0bd3f3a37dfa8628e93083cda1212d71b65cb6) upgrade tests - [`53c87e6`](https://github.com/RPCS3/discord-bot/commit/53c87e6b32362995de66c58354eb89d632bc6ed4) fix compilation warnings after upgrading to dotnet core 3.0 - [`90c05d5`](https://github.com/RPCS3/discord-bot/commit/90c05d5b991ef958babeda9cb22e2e56db58648c) update readme slightly - [`d1e3308`](https://github.com/RPCS3/discord-bot/commit/d1e3308531b11388067166a009dae16be890d0c7) upgrade library projects to .net standard 2.1 - [`d5d82c3`](https://github.com/RPCS3/discord-bot/commit/d5d82c3ca3e5811a250280cbc9e5e5564cec0bd8) test for log analysis profiling - [`ec02ce1`](https://github.com/RPCS3/discord-bot/commit/ec02ce141b4e456d75b62b969b00f12bb67f4a7e) convert syscall names to utf8 only when saving - [`7f82996`](https://github.com/RPCS3/discord-bot/commit/7f829965e41ce09a38ecafbf7c851e06017bc0fa) use new ??= operator ### 📊 Changes **36 files changed** (+260 additions, -226 deletions) <details> <summary>View changed files</summary> 📝 `Clients/AppveyorClient/AppveyorClient.csproj` (+1 -1) 📝 `Clients/AppveyorClient/Client.cs` (+1 -1) 📝 `Clients/CompatApiClient/CompatApiClient.csproj` (+1 -1) 📝 `Clients/GithubClient/GithubClient.csproj` (+1 -1) 📝 `Clients/IrdLibraryClient/IrdClient.cs` (+1 -1) 📝 `Clients/IrdLibraryClient/IrdLibraryClient.csproj` (+1 -1) 📝 `Clients/PsnClient/PsnClient.cs` (+1 -1) 📝 `Clients/PsnClient/PsnClient.csproj` (+1 -1) ➕ `CompatBot/.editorconfig` (+4 -0) 📝 `CompatBot/Commands/Syscall.cs` (+5 -8) 📝 `CompatBot/CompatBot.csproj` (+7 -4) 📝 `CompatBot/Database/DbImporter.cs` (+24 -22) 📝 `CompatBot/Database/NamingConventionConverter.cs` (+5 -5) 📝 `CompatBot/Database/PrimaryKeyConvention.cs` (+1 -2) 📝 `CompatBot/Database/Providers/SyscallInfoProvider.cs` (+3 -2) 📝 `CompatBot/EventHandlers/BotReactionsHandler.cs` (+1 -1) 📝 `CompatBot/EventHandlers/GithubLinksHandler.cs` (+1 -1) 📝 `CompatBot/EventHandlers/LogParsing/LogParser.StateMachineGenerator.cs` (+2 -2) ➕ `CompatBot/EventHandlers/LogParsing/SourceHandlers/FileSourceHandler.cs` (+57 -0) 📝 `CompatBot/EventHandlers/ProductCodeLookup.cs` (+1 -1) _...and 16 more files_ </details> ### 📄 Description _No description provided_ --- <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:56:11 -05:00
yindo closed this issue 2026-02-15 15:56:11 -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#519