mirror of
https://github.com/JuniorDark/RustyHearts-Launcher.git
synced 2026-05-07 05:21:44 -04:00
Updated dependencies
Replaced deprecated DotNetZip with System.IO.Compression. Changed target framework to net 9.0. Removed DotNetZip package reference. Updated Microsoft.Web.WebView2 to 1.0.2903.40. Updated WindowsAPICodePack to 8.0.6.
This commit is contained in:
parent
3648b49bb3
commit
7849b2001a
8 changed files with 91 additions and 80 deletions
|
|
@ -81,7 +81,7 @@ namespace RHLauncher
|
|||
{
|
||||
if (languageChanged)
|
||||
{
|
||||
string? selectedLanguage = cbLauncherLanguage.SelectedItem.ToString();
|
||||
string? selectedLanguage = cbLauncherLanguage.SelectedItem?.ToString();
|
||||
string languageCode = GetLanguageCode(selectedLanguage);
|
||||
|
||||
if (languageCode != null)
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
using RHLauncher.RHLauncher.i8n;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace RHLauncher
|
||||
{
|
||||
public partial class MsgBoxForm : Form
|
||||
{
|
||||
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
||||
public new DialogResult DialogResult { get; private set; }
|
||||
|
||||
public MsgBoxForm()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue