3 Commit-ok 01651bed18 ... 9a84b2af99

Szerző SHA1 Üzenet Dátum
  chpark 9a84b2af99 *버전 정보 수정 4 hónapja
  chpark 5254e578be Merge branch 'hotfix/NewFile' into develop 4 hónapja
  chpark 9621ca197c *오류 수정 4 hónapja

+ 5 - 0
DataManager/Forms/AllInOneDashBoard.cs

@@ -341,6 +341,11 @@ namespace DataManager
                 if (fileName.ToLower() == "web.config")
                     rewriteSection = GetRewriteSection(destinationFile);
 
+                // 경로가 없을 경우에 생성하면서 파일 복사
+                string directoryPath = Path.GetDirectoryName(destinationFile);
+                if (!Directory.Exists(directoryPath))
+                    Directory.CreateDirectory(directoryPath);
+
                 // 파일을 덮어쓰기 위해 복사합니다.
                 File.Copy(file, destinationFile, true);
 

+ 2 - 2
DataManager/Properties/AssemblyInfo.cs

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
 // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
 // 기본값으로 할 수 있습니다.
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.1.6")]
-[assembly: AssemblyFileVersion("1.1.6")]
+[assembly: AssemblyVersion("1.1.7")]
+[assembly: AssemblyFileVersion("1.1.7")]