From 1ee9e948d9428d4399170cb8f0a1811ed9e7ed22 Mon Sep 17 00:00:00 2001 From: T001084 Date: Tue, 18 Mar 2025 11:24:22 +0900 Subject: [PATCH] =?UTF-8?q?ViewList=20=EB=B0=B0=ED=8F=AC=20=ED=8F=AC?= =?UTF-8?q?=ED=95=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DDUtilityApp/DDUtilityApp.csproj | 16 +++++++++++++--- DDUtilityApp/MESDOWNLOADER/FrmServerLog.cs | 7 +++++-- DDUtilityApp/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/DDUtilityApp/DDUtilityApp.csproj b/DDUtilityApp/DDUtilityApp.csproj index 7057cda..17a8936 100644 --- a/DDUtilityApp/DDUtilityApp.csproj +++ b/DDUtilityApp/DDUtilityApp.csproj @@ -16,7 +16,7 @@ - ftp://pms.e1soft.co.kr/eqview/Provider/ + ftp://192.168.100.11/eqview/Provider/ true Web true @@ -34,8 +34,8 @@ true index.htm true - 0 - 2025.03.18.0 + 2 + 2025.03.18.2 false true true @@ -632,6 +632,16 @@ True File + + False + + + + + Include + True + File + diff --git a/DDUtilityApp/MESDOWNLOADER/FrmServerLog.cs b/DDUtilityApp/MESDOWNLOADER/FrmServerLog.cs index 9f5d6a6..0ab8ab9 100644 --- a/DDUtilityApp/MESDOWNLOADER/FrmServerLog.cs +++ b/DDUtilityApp/MESDOWNLOADER/FrmServerLog.cs @@ -409,8 +409,11 @@ namespace DDUtilityApp.MESDOWNLOADER } else { - string filename = Util.GetFileMerge(downloads); - System.Diagnostics.Process.Start(filename); + string fileName = Util.GetFileMerge(downloads); + string extension = System.IO.Path.GetExtension(fileName); + if (string.Compare(extension, ".Log", true) != 0) + System.IO.File.Move(fileName, fileName += ".log"); + System.Diagnostics.Process.Start(fileName); } } } diff --git a/DDUtilityApp/Properties/AssemblyInfo.cs b/DDUtilityApp/Properties/AssemblyInfo.cs index affd35b..a5efe33 100644 --- a/DDUtilityApp/Properties/AssemblyInfo.cs +++ b/DDUtilityApp/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로 // 지정되도록 할 수 있습니다. // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2025.03.14.0")] -[assembly: AssemblyFileVersion("2025.03.14.0")] +[assembly: AssemblyVersion("2025.03.18.1")] +[assembly: AssemblyFileVersion("2025.03.18.1")]