upgrade ProgressUpdater to .net6

This commit is contained in:
2022-06-09 08:41:47 +02:00
parent 50347d6ae6
commit 83b0ca22cd
22 changed files with 942 additions and 1061 deletions

View File

@@ -8,11 +8,11 @@ namespace SM64_ROM_Manager.ProgressUpdater
{
public class Settings
{
public string ProxyUsr { get; set; } = string.Empty;
public string ProxyPwd { get; set; } = string.Empty;
public string WebDavUri { get; set; } = string.Empty;
public string WebDavUsr { get; set; } = string.Empty;
public string WebDavPwd { get; set; } = string.Empty;
public string WebDavUri { get; set; } = string.Empty;
public string ProxyUsr { get; set; } = string.Empty;
public string ProxyPwd { get; set; } = string.Empty;
public string Version { get; set; } = string.Empty;
public bool DiscordUploadEnabled { get; set; } = false;
public string DiscordBotToken { get; set; } = default;