Updates: Fixed connection error due to TLS 1.2 not being enabled

This commit is contained in:
Sour 2019-05-11 22:07:22 -04:00
parent 8c0c42fd4c
commit 28a02a464d

View file

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Reflection;
using System.Runtime.ExceptionServices;
using System.Runtime.InteropServices;
@ -60,6 +61,9 @@ namespace Mesen.GUI
Application.ThreadException += Application_ThreadException;
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
//Enable TLS 1.0/1.1/1.2 support
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);