@@ -89,7 +89,7 @@ in className.Split(new[] { '_' }, StringSplitOptions.RemoveEmptyEntries)
89
89
/// <param name="forceAll"></param>
90
90
/// <param name="genManagerClass"></param>
91
91
/// <param name="templateVars">如果是生成Manager Class 一定要在外部初始化此字段</param>
92
- void GenSingleClass ( TableCompileResult compileResult , string genCodeTemplateString , string genCodeFilePath ,
92
+ void GenCodeFile ( TableCompileResult compileResult , string genCodeTemplateString , string genCodeFilePath ,
93
93
string nameSpace = "AppSettings" , string changeExtension = ".tml" , string settingCodeIgnorePattern = null , bool forceAll = false , bool genManagerClass = false , Dictionary < string , TableTemplateVars > templateVars = null )
94
94
{
95
95
// 根据编译结果,构建vars,同class名字的,进行合并
@@ -183,7 +183,7 @@ void GenManagerClass(List<TableCompileResult> results, string genCodeTemplateStr
183
183
var templateVars = new Dictionary < string , TableTemplateVars > ( ) ;
184
184
foreach ( var compileResult in results )
185
185
{
186
- GenSingleClass ( compileResult , genCodeTemplateString , genCodeFilePath , nameSpace , changeExtension , settingCodeIgnorePattern , forceAll , true , templateVars ) ;
186
+ GenCodeFile ( compileResult , genCodeTemplateString , genCodeFilePath , nameSpace , changeExtension , settingCodeIgnorePattern , forceAll , true , templateVars ) ;
187
187
}
188
188
}
189
189
@@ -235,9 +235,8 @@ public List<TableCompileResult> CompileTableMLAllInSingleFile(string sourcePath,
235
235
* NOTE 开始编译Excel 成 tml文件
236
236
* 每编译一个Excel就生成一个代码文件
237
237
*/
238
- //NOTE 设置编译出的文件名
239
- SimpleExcelFile excelFile = new SimpleExcelFile ( excelPath ) ;
240
- relativePath = excelFile . GetOutFileName ( ) ;
238
+ //NOTE 设置编译后文件的文件名(tml文件名)
239
+ relativePath = SimpleExcelFile . GetOutFileName ( excelPath ) ;
241
240
var compileToPath = string . Format ( "{0}/{1}" , compileBaseDir ,
242
241
Path . ChangeExtension ( relativePath , changeExtension ) ) ;
243
242
var srcFileInfo = new FileInfo ( excelPath ) ;
@@ -269,7 +268,7 @@ public List<TableCompileResult> CompileTableMLAllInSingleFile(string sourcePath,
269
268
var compiledFileInfo = new FileInfo ( compileToPath ) ;
270
269
compiledFileInfo . LastWriteTime = srcFileInfo . LastWriteTime ;
271
270
//仅仅是生成单个Class,只需要当前的CompileResult
272
- GenSingleClass ( compileResult , genCodeTemplateString , genCodeFilePath , nameSpace , changeExtension , settingCodeIgnorePattern , forceAll ) ;
271
+ GenCodeFile ( compileResult , genCodeTemplateString , genCodeFilePath , nameSpace , changeExtension , settingCodeIgnorePattern , forceAll ) ;
273
272
274
273
}
275
274
}
0 commit comments