### 2021-02-22更新

------
#### SuperDesign    V2.0.2102.2201
- *.[修复]修复打包时自定义路径里的文件无法更新的BUG。
This commit is contained in:
鑫Intel 2021-02-22 14:15:14 +08:00
parent abae178120
commit a955c10aab
5 changed files with 13 additions and 4 deletions

View File

@ -1,4 +1,9 @@
### 2021-02-13更新
### 2021-02-22更新
------
#### SuperDesign V2.0.2102.2201
- *.[修复]修复打包时自定义路径里的文件无法更新的BUG。
### 2021-02-13更新
------
#### SuperDesign V2.0.2102.0101
*.[更换]更换高亮控件。

View File

@ -528,7 +528,11 @@ namespace 开发辅助工具.Manager
{
var from_path = from_to[0];
var to_path = from_to[1];
ryCommon.RyFiles.CopyFile(ouput_folder + "\\" + from_path, bf_folder + "\\Publish\\OriginalFiles\\" + to_path);
if(from_path.IndexOfEx(":")<0)
{
from_path= ouput_folder + "\\" + from_path;
}
ryCommon.RyFiles.CopyFile(from_path, bf_folder + "\\Publish\\OriginalFiles\\" + to_path);
}
}
}

View File

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.2102.0101")]
[assembly: AssemblyFileVersion("2.0.2102.0101")]
[assembly: AssemblyVersion("2.0.2102.2201")]
[assembly: AssemblyFileVersion("2.0.2102.2201")]