export-table-pulgin-csharp 1.0.53 → 1.0.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -139,7 +139,7 @@ namespace MEEC.ExportedConfigs
|
|
|
139
139
|
public static class DefaultConfigLoader{
|
|
140
140
|
public static IEnumerable<Func<Task>> Load(){
|
|
141
141
|
${(0, export_table_lib_1.foreach)(tables, (table) => `
|
|
142
|
-
yield return ${table.name}.Load;
|
|
142
|
+
yield return ${firstLetterUpper(table.name)}.Load;
|
|
143
143
|
`)}
|
|
144
144
|
yield break;
|
|
145
145
|
}
|
package/package.json
CHANGED
|
@@ -132,7 +132,7 @@ namespace MEEC.ExportedConfigs
|
|
|
132
132
|
public static class DefaultConfigLoader{
|
|
133
133
|
public static IEnumerable<Func<Task>> Load(){
|
|
134
134
|
${foreach(tables, (table) => `
|
|
135
|
-
yield return ${table.name}.Load;
|
|
135
|
+
yield return ${firstLetterUpper(table.name)}.Load;
|
|
136
136
|
`)}
|
|
137
137
|
yield break;
|
|
138
138
|
}
|