Force TLS1.3 network connections for security reasons

This commit is contained in:
Terry MacDonald 2021-10-02 09:49:34 +13:00
parent eae7de6ead
commit 8216d307e7
2 changed files with 3 additions and 3 deletions

View File

@ -214,7 +214,7 @@ namespace DisplayMagician {
//Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls13;
logger.Debug($"Setting up commandline processing configuration");

View File

@ -26,8 +26,8 @@ using System.Resources;
[assembly: Guid("e4ceaf5e-ad01-4695-b179-31168eb74c48")]
// Version information
[assembly: AssemblyVersion("2.0.0.22")]
[assembly: AssemblyFileVersion("2.0.0.22")]
[assembly: AssemblyVersion("2.0.1.23")]
[assembly: AssemblyFileVersion("2.0.1.23")]
[assembly: NeutralResourcesLanguageAttribute( "en" )]
[assembly: CLSCompliant(true)]