export-table-pulgin-csharp 1.1.149 → 1.1.151

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.
@@ -150,7 +150,7 @@ namespace ${exportNamespace}
150
150
  throw new System.Exception(tip);
151
151
  }
152
152
  var loadUrl = pathConverter == null ? LoadUrl : pathConverter(LoadUrl);
153
- var configJson = System.IO.File.ReadAllText(loadUrl, Encoding.UTF8);
153
+ var configJson = System.IO.File.ReadAllText(loadUrl, System.Text.Encoding.UTF8);
154
154
  if (configJson != null)
155
155
  {
156
156
  var obj = new TempA()
@@ -39,7 +39,7 @@ function exportMMP(paras) {
39
39
  using System;
40
40
  using System.Collections.Generic;
41
41
  using System.Runtime.InteropServices;
42
- using ExportedConfigs.MMPConvTool.Core;
42
+ using LoadTableMMP.Runtime;
43
43
 
44
44
  namespace ${exportNamespace}
45
45
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "export-table-pulgin-csharp",
3
- "version": "1.1.149",
3
+ "version": "1.1.151",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {},
@@ -146,7 +146,7 @@ namespace ${exportNamespace}
146
146
  throw new System.Exception(tip);
147
147
  }
148
148
  var loadUrl = pathConverter == null ? LoadUrl : pathConverter(LoadUrl);
149
- var configJson = System.IO.File.ReadAllText(loadUrl, Encoding.UTF8);
149
+ var configJson = System.IO.File.ReadAllText(loadUrl, System.Text.Encoding.UTF8);
150
150
  if (configJson != null)
151
151
  {
152
152
  var obj = new TempA()
@@ -25,7 +25,7 @@ export function exportMMP(paras: HandleSheetParams): string | null {
25
25
  using System;
26
26
  using System.Collections.Generic;
27
27
  using System.Runtime.InteropServices;
28
- using ExportedConfigs.MMPConvTool.Core;
28
+ using LoadTableMMP.Runtime;
29
29
 
30
30
  namespace ${exportNamespace}
31
31
  {