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")]