Skip to content

Commit 10f9741

Browse files
committed
[1.10.2] 无缝升级&兼容性调整
去除了次级空间 Structure 以免代码不通用 隐式转换 fint64 和 double 显式/隐式转换 SetObject 和 fint64
1 parent 011d3b4 commit 10f9741

File tree

15 files changed

+30
-21
lines changed

15 files changed

+30
-21
lines changed

LinePutScript/Converter/LPSConvert.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.Linq;
55
using System.Reflection;
66
using System.Text;
7-
using LinePutScript.Structure;
87
#nullable enable
98
namespace LinePutScript.Converter
109
{

LinePutScript/Core/LinePutScript.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<ImplicitUsings>disable</ImplicitUsings>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<LangVersion>9.0</LangVersion>
77
<Nullable>enable</Nullable>
88
<GenerateDocumentationFile>True</GenerateDocumentationFile>

LinePutScript/Dictionary/LPS_D.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.Linq;
55
using System.Text;
66
using System.Threading.Tasks;
7-
using LinePutScript.Structure;
87
#nullable enable
98
namespace LinePutScript.Dictionary
109
{

LinePutScript/Dictionary/Line_D.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
using System.Security.Cryptography.X509Certificates;
88
using System.Text;
99
using System.Threading.Tasks;
10-
using LinePutScript.Structure;
1110
using static LinePutScript.Sub;
1211
#nullable enable
1312
namespace LinePutScript.Dictionary

LinePutScript/Interface/IGetOBJ.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using LinePutScript.Structure;
76
#nullable enable
87
namespace LinePutScript
98
{

LinePutScript/Interface/ILine.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using LinePutScript.Structure;
2-
using System;
1+
using System;
32
using System.Collections;
43
using System.Collections.Generic;
54
using System.Linq;

LinePutScript/Interface/ISetObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using fint64 = LinePutScript.Structure.FInt64;
6+
using fint64 = LinePutScript.FInt64;
77

88
#nullable enable
99
namespace LinePutScript

LinePutScript/Interface/ISub.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using LinePutScript.Structure;
2-
using System;
1+
using System;
32
using System.Collections;
43
using System.Collections.Generic;
54
using System.Linq;

LinePutScript/Line.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using LinePutScript.Dictionary;
2-
using LinePutScript.Structure;
32
using System;
43
using System.Collections.Generic;
54
using System.Dynamic;

LinePutScript/LpsDocument.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using LinePutScript.Dictionary;
2-
using LinePutScript.Structure;
32
using System;
43
using System.Collections;
54
using System.Collections.Generic;

0 commit comments

Comments
 (0)