From ce17624060e5c18fc1f01742f00e4275bfd2dd3c Mon Sep 17 00:00:00 2001 From: ttp Date: Wed, 11 Oct 2017 00:16:04 +0900 Subject: [PATCH] =?utf8?q?na-get-lib,TLSv1.1/1.2=E4=BD=BF=E7=94=A8?= =?utf8?q?=E4=B8=8D=E8=83=BD=E6=99=82=E3=81=AE=E3=83=A1=E3=83=83=E3=82=BB?= =?utf8?q?=E3=83=BC=E3=82=B8=E3=82=92WARNING=E3=81=8B=E3=82=89=E5=8D=98?= =?utf8?q?=E3=81=AA=E3=82=8BINFO=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- na-get-lib/NaGet.SubCommands.SubTask/SecurityProtocolConfigSubTask.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/na-get-lib/NaGet.SubCommands.SubTask/SecurityProtocolConfigSubTask.cs b/na-get-lib/NaGet.SubCommands.SubTask/SecurityProtocolConfigSubTask.cs index ec04e9b..8c99e14 100644 --- a/na-get-lib/NaGet.SubCommands.SubTask/SecurityProtocolConfigSubTask.cs +++ b/na-get-lib/NaGet.SubCommands.SubTask/SecurityProtocolConfigSubTask.cs @@ -28,14 +28,14 @@ namespace NaGet.SubCommands.SubTask ServicePointManager.SecurityProtocol |= (SecurityProtocolType)768; // SecurityProtocolType.Tls11 RaiseTaskSetEvent(TaskEventType.PING, string.Empty, 66); } catch (NotSupportedException) { - RaiseTaskSetEvent(TaskEventType.WARNING, "TLSv1.1は有効ではありません", 66); + RaiseTaskSetEvent(TaskEventType.INFO, "TLSv1.1は有効ではありません", 66); } try { ServicePointManager.SecurityProtocol |= (SecurityProtocolType)3072; // SecurityProtocolType.Tls12 RaiseTaskSetEvent(TaskEventType.PING, string.Empty, 99); } catch (NotSupportedException) { - RaiseTaskSetEvent(TaskEventType.WARNING, "TLSv1.2は有効ではありません", 99); + RaiseTaskSetEvent(TaskEventType.INFO, "TLSv1.2は有効ではありません", 99); } RaiseTaskSetEvent(TaskEventType.COMPLETED, "セキュリティプロトコル設定の確認", 100); -- 2.11.0